1 write to LaunchConfigurationType
Aspire.Hosting (1)
SupportsDebuggingAnnotation.cs (1)
19
LaunchConfigurationType
= launchConfigurationType;
11 references to LaunchConfigurationType
Aspire.Hosting (4)
Dcp\DcpExecutor.cs (2)
1478
if (supportsDebuggingAnnotation.
LaunchConfigurationType
is "project")
1882
&& supportsDebuggingAnnotation.
LaunchConfigurationType
is not "project")
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.JavaScript.Tests (3)
AddNodeAppTests.cs (3)
443
Assert.Equal("node", annotation.
LaunchConfigurationType
);
468
Assert.Equal("node", annotation.
LaunchConfigurationType
);
495
Assert.Equal("browser", annotation.
LaunchConfigurationType
);
Aspire.Hosting.Tests (4)
ExecutableResourceBuilderExtensionTests.cs (1)
87
Assert.Equal("ms-python.python", annotation.
LaunchConfigurationType
);
ProjectResourceTests.cs (3)
910
Assert.Equal("project", annotation.
LaunchConfigurationType
);
921
Assert.Equal("project", annotation.
LaunchConfigurationType
);
932
Assert.Equal("project", annotation.
LaunchConfigurationType
);