1 write to LaunchConfigurationType
Aspire.Hosting (1)
SupportsDebuggingAnnotation.cs (1)
26LaunchConfigurationType = launchConfigurationType;
34 references to LaunchConfigurationType
Aspire.Hosting (15)
ApplicationModel\DebugSupportExtensions.cs (3)
65return supportsDebuggingAnnotation.LaunchConfigurationType == KnownLaunchConfigurationTypes.Project; 73return supportedLaunchConfigurations.Contains(supportsDebuggingAnnotation.LaunchConfigurationType); 95&& string.Equals(owner, supportsDebuggingAnnotation.LaunchConfigurationType, StringComparison.Ordinal);
ApplicationModel\ExecutableLaunchRecipe.cs (6)
325activeDebugSupport.LaunchConfigurationType, 377if (debugSupport.LaunchConfigurationType is KnownLaunchConfigurationTypes.Project && 416$"Failed to produce launch configuration type '{debugSupport.LaunchConfigurationType}' for resource '{context.Resource.Name}'.", 492activeDebugSupport.LaunchConfigurationType, 544if (context.Decision.DebugSupport is { LaunchConfigurationType: not KnownLaunchConfigurationTypes.Project } customDebugSupport) 560customDebugSupport.LaunchConfigurationType,
Dcp\ExecutableLaunchPolicy.cs (5)
37debugSupport is { LaunchConfigurationType: not KnownLaunchConfigurationTypes.Project } 42GetLaunchMode(metadataProducer?.LaunchConfigurationType), 51GetLaunchMode(debugSupport.LaunchConfigurationType), 69GetLaunchMode(debugSupport.LaunchConfigurationType), 89debugSupport?.LaunchConfigurationType is not null and not KnownLaunchConfigurationTypes.Project)
Dcp\ResourceSnapshotBuilder.cs (1)
234return annotation.LaunchConfigurationType;
Aspire.Hosting.Dotnet (2)
DotnetProjectHostingExtensions.cs (2)
137&& debugAnnotation.LaunchConfigurationType is KnownLaunchConfigurationTypes.Project) 191&& debugAnnotation.LaunchConfigurationType is KnownLaunchConfigurationTypes.Project))
Aspire.Hosting.Dotnet.Tests (2)
DotnetProjectResourceTests.cs (2)
469Assert.Equal("project", annotation.LaunchConfigurationType); 545Assert.Equal(KnownLaunchConfigurationTypes.Project, supportsDebugging.LaunchConfigurationType);
Aspire.Hosting.Java.Tests (2)
AddJavaAppTests.cs (2)
1199Assert.Equal("java", annotation!.LaunchConfigurationType); 1357Assert.Equal("java", annotation.LaunchConfigurationType);
Aspire.Hosting.JavaScript.Tests (5)
AddBunAppTests.cs (2)
315Assert.Equal("bun", annotation.LaunchConfigurationType); 341Assert.Equal("bun", annotation.LaunchConfigurationType);
AddNodeAppTests.cs (3)
446Assert.Equal("node", annotation.LaunchConfigurationType); 471Assert.Equal("node", annotation.LaunchConfigurationType); 498Assert.Equal("browser", annotation.LaunchConfigurationType);
Aspire.Hosting.Maui.Tests (2)
MauiPlatformExtensionsTests.cs (2)
165Assert.Equal("maui", debugSupport.LaunchConfigurationType); 460Assert.Equal("maui", debugSupport.LaunchConfigurationType);
Aspire.Hosting.Tests (6)
DebugSupportExtensionsTests.cs (2)
135Assert.Equal(KnownLaunchConfigurationTypes.Project, debugSupport.LaunchConfigurationType); 355Assert.Equal(KnownLaunchConfigurationTypes.Project, annotation.LaunchConfigurationType);
ExecutableResourceBuilderExtensionTests.cs (1)
106Assert.Equal("ms-python.python", annotation.LaunchConfigurationType);
ProjectResourceTests.cs (3)
974Assert.Equal("project", annotation.LaunchConfigurationType); 985Assert.Equal("project", annotation.LaunchConfigurationType); 996Assert.Equal("project", annotation.LaunchConfigurationType);