2 types derived from DotNetCommand
Aspire.Templates.Tests (2)
tests\Shared\TemplatesTesting\DotNetNewCommand.cs (1)
8
public class DotNetNewCommand :
DotNetCommand
tests\Shared\TemplatesTesting\RunCommand.cs (1)
8
public class RunCommand :
DotNetCommand
6 instantiations of DotNetCommand
Aspire.Templates.Tests (6)
BuildAndRunTemplateTests.cs (1)
131
using var buildCmd = new
DotNetCommand
(_testOutput, buildEnv: testSpecificBuildEnvironment, label: "first-run")
PerTestFrameworkTemplatesTests.cs (1)
46
using var cmd = new
DotNetCommand
(_testOutput, label: $"test-{_testTemplateName}")
TemplateTestsBase.cs (2)
329
using var buildCmd = new
DotNetCommand
(testOutput, label: $"test-{testType}")
336
using var testCmd = new
DotNetCommand
(testOutput, label: $"test-{testType}")
tests\Shared\TemplatesTesting\AspireProject.cs (2)
324
using var restoreCmd = new
DotNetCommand
(_testOutput, buildEnv: _buildEnv, label: "restore")
334
using var buildCmd = new
DotNetCommand
(_testOutput, buildEnv: _buildEnv, label: "build")