1 type derived from ExecutableLaunchConfiguration
Aspire.Hosting (1)
Dcp\Model\ExecutableLaunchConfiguration.cs (1)
33
internal class ProjectLaunchConfiguration() :
ExecutableLaunchConfiguration
("project")
10 instantiations of ExecutableLaunchConfiguration
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (8)
1658
builder.AddResource(debuggableExecutable).WithDebugSupport(mode => new
ExecutableLaunchConfiguration
("test") { Mode = mode }, "test");
1713
builder.AddResource(executable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1749
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1791
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1827
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1863
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1905
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1947
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)
1695
Assert.True(debuggableExe.TryGetAnnotationAsObjectList<
ExecutableLaunchConfiguration
>(Executable.LaunchConfigurationsAnnotation, out var launchConfigs1));
1696
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));