2 instantiations of RunCommand
dotnet (2)
Commands\Run\Api\RunApiCommand.cs (1)
97var runCommand = new RunCommand(
Commands\Run\RunCommand.cs (1)
686var command = new RunCommand(
10 references to RunCommand
dotnet (6)
Commands\Run\Api\RunApiCommand.cs (1)
97var runCommand = new RunCommand(
Commands\Run\RunCommand.cs (3)
601public static RunCommand FromArgs(string[] args) 607public static RunCommand FromParseResult(ParseResult parseResult) 686var command = new RunCommand(
Commands\Run\RunCommandParser.cs (1)
113command.SetAction(RunCommand.Run);
Commands\Run\RunProperties.cs (1)
34RunCommand.ThrowUnableToRunError(project);
dotnet.Tests (4)
CommandTests\MSBuild\GivenDotnetRunInvocation.cs (2)
43var command = RunCommand.FromArgs(args);
CommandTests\Run\RunParserTests.cs (2)
27var runCommand = RunCommand.FromArgs(new[] { "--project", projectPath, "--", "foo" });