-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOptions.cs
More file actions
81 lines (63 loc) · 3.1 KB
/
Options.cs
File metadata and controls
81 lines (63 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
* Copyright (c) 2019 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using CommandLine;
namespace APITool
{
[Verb("print", HelpText = "Print public exposed APIs.")]
public class PrintOptions
{
[Option('v', "verbose", Default = false, HelpText = "Print verbose messages.")]
public bool Verbose { get; set; }
[Option('t', "types", Default = false, HelpText = "Print types.")]
public bool PrintTypes { get; set; }
[Option('f', "fields", Default = false, HelpText = "Print fields.")]
public bool PrintFields { get; set; }
[Option('p', "properties", Default = false, HelpText = "Print properties.")]
public bool PrintProperties { get; set; }
[Option('e', "events", Default = false, HelpText = "Print events.")]
public bool PrintEvents { get; set; }
[Option('m', "methods", Default = false, HelpText = "Print methods.")]
public bool PrintMethods { get; set; }
[Option('h', "include-hidden", Default = false, HelpText = "Print hidden(internal API) entries.")]
public bool PrintHiddens { get; set; }
[Option('o', "output", Required = false, HelpText = "Output file path")]
public string OutputFile { get; set; }
[Option("format", Required = false, Default = "DocIds", HelpText = "Output format (DocIds, CSV)")]
public string OutputFormat { get; set; }
[Value(0, MetaName = "target", Required = true, HelpText = "Target assembly or directory")]
public string Target { get; set; }
}
[Verb("dummy", HelpText = "Generate dummy assemblies")]
public class DummyOptions
{
[Option('v', "verbose", Default = false, HelpText = "Print verbose messages.")]
public bool Verbose { get; set; }
[Value(0, MetaName = "InputPath", Required = true, HelpText = "Input file or directory to process.")]
public string InputPath { get; set; }
[Value(1, MetaName = "OutputPath", HelpText = "Output path for generated files.")]
public string OutputPath { get; set; }
}
[Verb("ref", HelpText = "Print assembly references")]
public class RefOptions
{
[Option('v', "verbose", Default = false, HelpText = "Print verbose messages.")]
public bool Verbose { get; set; }
[Option('n', "nameonly", Default = false, HelpText = "Print assembly name only.")]
public bool NameOnly { get; set; }
[Value(0, MetaName = "TargetAssembly", Required = true, HelpText = "Assembly to print references.")]
public string TargetAssembly { get; set; }
}
}