1 type derived from ExecutableLaunchConfiguration
Aspire.Hosting (1)
Dcp\Model\ExecutableLaunchConfiguration.cs (1)
33internal class ProjectLaunchConfiguration() : ExecutableLaunchConfiguration("project")
10 instantiations of ExecutableLaunchConfiguration
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (8)
1618builder.AddResource(debuggableExecutable).WithDebugSupport(mode => new ExecutableLaunchConfiguration("test") { Mode = mode }, "test"); 1673builder.AddResource(executable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1709builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1751builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1787builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1823builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1865builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1907builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test");
ExecutableResourceBuilderExtensionTests.cs (2)
78var launchConfig = new ExecutableLaunchConfiguration("python"); 98.WithDebugSupport(_ => new ExecutableLaunchConfiguration("python"), "ms-python.python");
4 references to ExecutableLaunchConfiguration
Aspire.Hosting.Tests (4)
Dcp\DcpExecutorTests.cs (2)
1655Assert.True(debuggableExe.TryGetAnnotationAsObjectList<ExecutableLaunchConfiguration>(Executable.LaunchConfigurationsAnnotation, out var launchConfigs1)); 1656var config1 = Assert.Single(launchConfigs1);
ExecutableResourceBuilderExtensionTests.cs (2)
78var launchConfig = new ExecutableLaunchConfiguration("python"); 88Assert.True(exe.TryGetAnnotationAsObjectList<ExecutableLaunchConfiguration>(Executable.LaunchConfigurationsAnnotation, out var annotations));