1 write to LaunchConfigurationType
Aspire.Hosting (1)
SupportsDebuggingAnnotation.cs (1)
19LaunchConfigurationType = launchConfigurationType;
6 references to LaunchConfigurationType
Aspire.Hosting (2)
Utils\ExtensionUtils.cs (2)
22&& ((supportedLaunchConfigurations is null && supportsDebuggingAnnotation.LaunchConfigurationType == "project") // per DCP spec, project resources support debugging if no launch configurations are specified 23|| (supportedLaunchConfigurations is not null && supportedLaunchConfigurations.Contains(supportsDebuggingAnnotation.LaunchConfigurationType)));
Aspire.Hosting.Tests (4)
ExecutableResourceBuilderExtensionTests.cs (1)
86Assert.Equal("ms-python.python", annotation.LaunchConfigurationType);
ProjectResourceTests.cs (3)
909Assert.Equal("project", annotation.LaunchConfigurationType); 920Assert.Equal("project", annotation.LaunchConfigurationType); 931Assert.Equal("project", annotation.LaunchConfigurationType);