1 write to Input
Swaggatherer (1)
SwaggathererApplication.cs (1)
22Input = Option("-i", "input swagger 2.0 JSON file", CommandOptionType.MultipleValue);
6 references to Input
Swaggatherer (6)
SwaggathererApplication.cs (6)
40if (!Input.HasValue() && !InputDirectory.HasValue()) 46if (Input.HasValue() && InputDirectory.HasValue()) 59Input.Values.AddRange(Directory.EnumerateFiles(InputDirectory.Value(), "*.json", SearchOption.AllDirectories)); 62Console.WriteLine($"Processing {Input.Values.Count} files..."); 64for (var i = 0; i < Input.Values.Count; i++) 66var input = ReadInput(Input.Values[i]);