1 write to Sources
rzc (1)
GenerateCommand.cs (1)
21Sources = Option("-s", ".cshtml files to compile", CommandOptionType.MultipleValue);
12 references to Sources
rzc (12)
GenerateCommand.cs (12)
83Sources.Values, Outputs.Values, RelativePaths.Values, 97if (Sources.Values.Count == 0) 99Error.WriteLine($"{Sources.Description} should have at least one value."); 103if (Outputs.Values.Count != Sources.Values.Count) 105Error.WriteLine($"{Sources.Description} has {Sources.Values.Count}, but {Outputs.Description} has {Outputs.Values.Count} values."); 109if (RelativePaths.Values.Count != Sources.Values.Count) 111Error.WriteLine($"{Sources.Description} has {Sources.Values.Count}, but {RelativePaths.Description} has {RelativePaths.Values.Count} values."); 115if (FileKinds.Values.Count != 0 && FileKinds.Values.Count != Sources.Values.Count) 119Error.WriteLine($"{Sources.Description} has {Sources.Values.Count}, but {FileKinds.Description} has {FileKinds.Values.Count} values.");