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