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)
26Commands = new List<CommandLineApplication>();
6 references to Commands
NuGet.CommandLine.XPlat (6)
Program.cs (2)
353List<CommandLineApplication> commands = app.Commands; 362commands = 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)
69Commands.Add(command); 255foreach (var subcommand in command.Commands) 373target = Commands.SingleOrDefault(cmd => string.Equals(cmd.Name, commandName, StringComparison.OrdinalIgnoreCase)); 423var commands = target.Commands.Where(c => c.ShowInHelpText).ToList();