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)
1658builder.AddResource(debuggableExecutable).WithDebugSupport(mode => new ExecutableLaunchConfiguration("test") { Mode = mode }, "test"); 1713builder.AddResource(executable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1749builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1791builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1827builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1863builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1905builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1947builder.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)
1695Assert.True(debuggableExe.TryGetAnnotationAsObjectList<ExecutableLaunchConfiguration>(Executable.LaunchConfigurationsAnnotation, out var launchConfigs1)); 1696var config1 = Assert.Single(launchConfigs1);
ExecutableResourceBuilderExtensionTests.cs (2)
78var launchConfig = new ExecutableLaunchConfiguration("python"); 88Assert.True(exe.TryGetAnnotationAsObjectList<ExecutableLaunchConfiguration>(Executable.LaunchConfigurationsAnnotation, out var annotations));