10 references to Option
GetDocument.Insider (10)
Commands\CommandBase.cs (2)
28var prefixOutput = command.Option("--prefix-output", Resources.PrefixDescription); 29var 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)
25AssemblyPath = command.Option("--assembly <PATH>", Resources.AssemblyDescription); 26ProjectName = command.Option("--project <Name>", Resources.ProjectDescription); 27ToolsDirectory = command.Option("--tools-directory <PATH>", Resources.ToolsDirectoryDescription);