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