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)
20Sources = Option("-s", ".cshtml files to compile", CommandOptionType.MultipleValue); 21Outputs = Option("-o", "Generated output file path", CommandOptionType.MultipleValue); 22RelativePaths = Option("-r", "Relative path", CommandOptionType.MultipleValue); 23FileKinds = Option("-k", "File kind", CommandOptionType.MultipleValue); 24CssScopeSources = Option("-cssscopedinput", ".razor file with scoped CSS", CommandOptionType.MultipleValue); 25CssScopeValues = Option("-cssscopevalue", "CSS scope value for .razor file with scoped CSS", CommandOptionType.MultipleValue); 30ExtensionNames = Option("-n", "extension name", CommandOptionType.MultipleValue); 31ExtensionFilePaths = Option("-e", "extension file path", CommandOptionType.MultipleValue);