10 references to NoValue
rzc (10)
CommandLine\CommandLineApplication.cs (4)
233else if (option.OptionType == CommandOptionType.NoValue) 302else if (option.OptionType == CommandOptionType.NoValue) 380OptionHelp = Option(template, "Show help information", CommandOptionType.NoValue); 406OptionVersion = Option(template, "Show version information", CommandOptionType.NoValue);
CommandLine\CommandOption.cs (1)
77case CommandOptionType.NoValue:
DiscoverCommand.cs (1)
31UseSourceGenerator = Option("--use-source-generator", "host the Razor source generator instead of the engine", CommandOptionType.NoValue);
GenerateCommand.cs (3)
36GenerateDeclaration = Option("--generate-declaration", "Generate declaration", CommandOptionType.NoValue); 37SupportLocalizedComponentNames = Option("--support-localized-component-names", "support localized component names", CommandOptionType.NoValue); 39UseSourceGenerator = Option("--use-source-generator", "host the Razor source generator instead of the engine", CommandOptionType.NoValue);
ShutdownCommand.cs (1)
15Wait = Option("-w|--wait", "wait for shutdown", CommandOptionType.NoValue);