1 type derived from ExecutableLaunchConfiguration
Aspire.Hosting (1)
Dcp\Model\Executable.cs (1)
268
internal class ProjectLaunchConfiguration() :
ExecutableLaunchConfiguration
("project")
10 instantiations of ExecutableLaunchConfiguration
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (8)
1554
builder.AddResource(debuggableExecutable).WithDebugSupport(mode => new
ExecutableLaunchConfiguration
("test") { Mode = mode }, "test");
1609
builder.AddResource(executable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1645
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1687
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1723
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1759
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1801
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1843
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
ExecutableResourceBuilderExtensionTests.cs (2)
78
var launchConfig = new
ExecutableLaunchConfiguration
("python");
98
.WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("python"), "ms-python.python");
4 references to ExecutableLaunchConfiguration
Aspire.Hosting.Tests (4)
Dcp\DcpExecutorTests.cs (2)
1591
Assert.True(debuggableExe.TryGetAnnotationAsObjectList<
ExecutableLaunchConfiguration
>(Executable.LaunchConfigurationsAnnotation, out var launchConfigs1));
1592
var
config1 = Assert.Single(launchConfigs1);
ExecutableResourceBuilderExtensionTests.cs (2)
78
var
launchConfig = new ExecutableLaunchConfiguration("python");
88
Assert.True(exe.TryGetAnnotationAsObjectList<
ExecutableLaunchConfiguration
>(Executable.LaunchConfigurationsAnnotation, out var annotations));