1 write to Commands
NuGet.CommandLine.XPlat (1)
src\nuget-client\artifacts\.packages\microsoft.extensions.commandlineutils.sources\3.0.0-preview6.19253.5\contentFiles\cs\netstandard1.0\shared\CommandLine\CommandLineApplication.cs (1)
26
Commands
= new List<CommandLineApplication>();
6 references to Commands
NuGet.CommandLine.XPlat (6)
Program.cs (2)
353
List<CommandLineApplication> commands = app.
Commands
;
362
commands = command.
Commands
;
src\nuget-client\artifacts\.packages\microsoft.extensions.commandlineutils.sources\3.0.0-preview6.19253.5\contentFiles\cs\netstandard1.0\shared\CommandLine\CommandLineApplication.cs (4)
69
Commands
.Add(command);
255
foreach (var subcommand in command.
Commands
)
373
target =
Commands
.SingleOrDefault(cmd => string.Equals(cmd.Name, commandName, StringComparison.OrdinalIgnoreCase));
423
var commands = target.
Commands
.Where(c => c.ShowInHelpText).ToList();