11 references to MultipleValue
rzc (11)
CommandLine\CommandOption.cs (1)
67case CommandOptionType.MultipleValue:
DiscoverCommand.cs (2)
26ExtensionNames = Option("-n", "extension name", CommandOptionType.MultipleValue); 27ExtensionFilePaths = Option("-e", "extension file path", CommandOptionType.MultipleValue);
GenerateCommand.cs (8)
21Sources = Option("-s", ".cshtml files to compile", CommandOptionType.MultipleValue); 22Outputs = Option("-o", "Generated output file path", CommandOptionType.MultipleValue); 23RelativePaths = Option("-r", "Relative path", CommandOptionType.MultipleValue); 24FileKinds = Option("-k", "File kind", CommandOptionType.MultipleValue); 25CssScopeSources = Option("-cssscopedinput", ".razor file with scoped CSS", CommandOptionType.MultipleValue); 26CssScopeValues = Option("-cssscopevalue", "CSS scope value for .razor file with scoped CSS", CommandOptionType.MultipleValue); 31ExtensionNames = Option("-n", "extension name", CommandOptionType.MultipleValue); 32ExtensionFilePaths = Option("-e", "extension file path", CommandOptionType.MultipleValue);