10 references to Option
GetDocument.Insider (10)
Commands\CommandBase.cs (2)
28
var prefixOutput = command.
Option
("--prefix-output", Resources.PrefixDescription);
29
var quiet = command.
Option
("-q|--quiet", Resources.QuietDescription);
Commands\GetDocumentCommand.cs (5)
32
_fileListPath = command.
Option
("--file-list <Path>", Resources.FileListDescription);
33
_output = command.
Option
("--output <Directory>", Resources.OutputDescription);
34
_openApiVersion = command.
Option
("--openapi-version <Version>", Resources.OpenApiVersionDescription);
35
_documentName = command.
Option
("--document-name <Name>", Resources.DocumentNameDescription);
36
_fileName = command.
Option
("--file-name <Name>", Resources.FileNameDescription);
Commands\ProjectCommandBase.cs (3)
25
AssemblyPath = command.
Option
("--assembly <PATH>", Resources.AssemblyDescription);
26
ProjectName = command.
Option
("--project <Name>", Resources.ProjectDescription);
27
ToolsDirectory = command.
Option
("--tools-directory <PATH>", Resources.ToolsDirectoryDescription);