2 types derived from ExecutableLaunchConfiguration
Aspire.Hosting (1)
Dcp\Model\Executable.cs (1)
293
internal class ProjectLaunchConfiguration() :
ExecutableLaunchConfiguration
("project")
Aspire.Hosting.Python (1)
PythonAppLaunchConfiguration.cs (1)
9
internal sealed class PythonLaunchConfiguration() :
ExecutableLaunchConfiguration
("python")
10 instantiations of ExecutableLaunchConfiguration
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (8)
1553
builder.AddResource(debuggableExecutable).WithDebugSupport(mode => new
ExecutableLaunchConfiguration
("test") { Mode = mode }, "test");
1603
builder.AddResource(executable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1639
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1681
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1717
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1753
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1795
builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new
ExecutableLaunchConfiguration
("test"), "test");
1837
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");
5 references to ExecutableLaunchConfiguration
Aspire.Hosting.Tests (5)
Dcp\DcpExecutorTests.cs (2)
1585
Assert.True(debuggableExe.TryGetAnnotationAsObjectList<
ExecutableLaunchConfiguration
>(Executable.LaunchConfigurationsAnnotation, out var launchConfigs1));
1586
var
config1 = Assert.Single(launchConfigs1);
DcpVisibilityTests.cs (1)
15
Assert.Equal(typeof(
ExecutableLaunchConfiguration
), Assert.Single(dcpNamespaceTypes));
ExecutableResourceBuilderExtensionTests.cs (2)
78
var
launchConfig = new ExecutableLaunchConfiguration("python");
88
Assert.True(exe.TryGetAnnotationAsObjectList<
ExecutableLaunchConfiguration
>(Executable.LaunchConfigurationsAnnotation, out var annotations));