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