1 write to Sources
rzc (1)
GenerateCommand.cs (1)
20Sources = Option("-s", ".cshtml files to compile", CommandOptionType.MultipleValue);
12 references to Sources
rzc (12)
GenerateCommand.cs (12)
82Sources.Values, Outputs.Values, RelativePaths.Values, 96if (Sources.Values.Count == 0) 98Error.WriteLine($"{Sources.Description} should have at least one value."); 102if (Outputs.Values.Count != Sources.Values.Count) 104Error.WriteLine($"{Sources.Description} has {Sources.Values.Count}, but {Outputs.Description} has {Outputs.Values.Count} values."); 108if (RelativePaths.Values.Count != Sources.Values.Count) 110Error.WriteLine($"{Sources.Description} has {Sources.Values.Count}, but {RelativePaths.Description} has {RelativePaths.Values.Count} values."); 114if (FileKinds.Values.Count != 0 && FileKinds.Values.Count != Sources.Values.Count) 118Error.WriteLine($"{Sources.Description} has {Sources.Values.Count}, but {FileKinds.Description} has {FileKinds.Values.Count} values.");