1 write to Sources
rzc (1)
GenerateCommand.cs (1)
22Sources = Option("-s", ".cshtml files to compile", CommandOptionType.MultipleValue);
12 references to Sources
rzc (12)
GenerateCommand.cs (12)
87Sources.Values, Outputs.Values, RelativePaths.Values, 111if (Sources.Values.Count == 0) 113Error.WriteLine($"{Sources.Description} should have at least one value."); 117if (Outputs.Values.Count != Sources.Values.Count) 119Error.WriteLine($"{Sources.Description} has {Sources.Values.Count}, but {Outputs.Description} has {Outputs.Values.Count} values."); 123if (RelativePaths.Values.Count != Sources.Values.Count) 125Error.WriteLine($"{Sources.Description} has {Sources.Values.Count}, but {RelativePaths.Description} has {RelativePaths.Values.Count} values."); 129if (FileKinds.Values.Count != 0 && FileKinds.Values.Count != Sources.Values.Count) 133Error.WriteLine($"{Sources.Description} has {Sources.Values.Count}, but {FileKinds.Description} has {FileKinds.Values.Count} values.");