2 types derived from DotNetCommand
Aspire.Workload.Tests (2)
tests\Shared\WorkloadTesting\DotNetNewCommand.cs (1)
8public class DotNetNewCommand : DotNetCommand
tests\Shared\WorkloadTesting\RunCommand.cs (1)
8public class RunCommand : DotNetCommand
4 instantiations of DotNetCommand
Aspire.Workload.Tests (4)
tests\Shared\WorkloadTesting\AspireProject.cs (2)
306using var restoreCmd = new DotNetCommand(_testOutput, buildEnv: _buildEnv, label: "restore") 316using var buildCmd = new DotNetCommand(_testOutput, buildEnv: _buildEnv, label: "build")
WorkloadTestsBase.cs (2)
329using var buildCmd = new DotNetCommand(testOutput, label: $"test-{testType}") 336using var testCmd = new DotNetCommand(testOutput, label: $"test-{testType}")