1 instantiation of CommandOption
dotnet-dev-certs (1)
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (1)
100var option = new CommandOption(template, optionType)
38 references to CommandOption
dotnet-dev-certs (38)
Program.cs (18)
66var exportPath = c.Option("-ep|--export-path", 70var password = c.Option("-p|--password", 75var noPassword = c.Option("-np|--no-password", 79var check = c.Option( 84var clean = c.Option( 89var import = c.Option( 94var format = c.Option( 99CommandOption trust = null; 104var verbose = c.Option("-v|--verbose", 108var quiet = c.Option("-q|--quiet", 201private static int ImportCertificate(CommandOption import, CommandOption password, ConsoleReporter reporter) 269private static int CheckHttpsCertificate(CommandOption trust, IReporter reporter) 338private static int EnsureHttpsCertificate(CommandOption exportPath, CommandOption password, CommandOption noPassword, CommandOption trust, CommandOption exportFormat, IReporter reporter)
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)