12 references to ToolExecuteCommandParser
dotnet (12)
Commands\Dnx\DnxCommandParser.cs (2)
23foreach (var argument in ToolExecuteCommandParser.Command.Arguments) 28foreach (var option in ToolExecuteCommandParser.Command.Options)
Commands\Tool\Execute\ToolExecuteCommand.cs (9)
25private readonly PackageIdentityWithRange _packageToolIdentityArgument = result.GetValue(ToolExecuteCommandParser.PackageIdentityArgument); 26private readonly IEnumerable<string> _forwardArguments = result.GetValue(ToolExecuteCommandParser.CommandArgument) ?? Enumerable.Empty<string>(); 27private readonly bool _allowRollForward = result.GetValue(ToolExecuteCommandParser.RollForwardOption); 28private readonly string? _configFile = result.GetValue(ToolExecuteCommandParser.ConfigOption); 29private readonly string[] _sources = result.GetValue(ToolExecuteCommandParser.SourceOption) ?? []; 30private readonly string[] _addSource = result.GetValue(ToolExecuteCommandParser.AddSourceOption) ?? []; 31private readonly bool _interactive = result.GetValue(ToolExecuteCommandParser.InteractiveOption); 32private readonly VerbosityOptions _verbosity = result.GetValue(ToolExecuteCommandParser.VerbosityOption); 38Interactive: result.GetValue(ToolExecuteCommandParser.InteractiveOption));
Commands\Tool\ToolCommandParser.cs (1)
41command.Subcommands.Add(ToolExecuteCommandParser.GetCommand());