1 instantiation of CommandOption
dotnet-sql-cache (1)
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (1)
100var option = new CommandOption(template, optionType)
23 references to CommandOption
dotnet-sql-cache (23)
Program.cs (3)
52var verbose = app.VerboseOption(); 99var outputOption = command.Option( 104var idempotentOption = command.Option(
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (17)
39Options = new List<CommandOption>(); 53public readonly List<CommandOption> Options; 54public CommandOption OptionHelp { get; private set; } 55public CommandOption OptionVersion { get; private set; } 67public IEnumerable<CommandOption> GetOptions() 89public CommandOption Option(string template, string description, CommandOptionType optionType) 92public CommandOption Option(string template, string description, CommandOptionType optionType, bool inherited) 95public CommandOption Option(string template, string description, CommandOptionType optionType, Action<CommandOption> configuration) 98public CommandOption Option(string template, string description, CommandOptionType optionType, Action<CommandOption> configuration, bool inherited) 100var option = new CommandOption(template, optionType) 145CommandOption option = null; 382public CommandOption HelpOption(string template) 391public CommandOption VersionOption(string template, 406public CommandOption VersionOption(string template, 498foreach (var opt in options)
src\Tools\Shared\CommandLine\CommandLineApplicationExtensions.cs (3)
12public static CommandOption HelpOption(this CommandLineApplication app) 15public static CommandOption VerboseOption(this CommandLineApplication app) 25public static CommandOption Option(this CommandLineApplication command, string template, string description)