2 instantiations of JavaScriptLaunchConfiguration
Aspire.Hosting.JavaScript (2)
JavaScriptHostingExtensions.cs (2)
2174return new JavaScriptLaunchConfiguration(launchConfigType) 2211return new JavaScriptLaunchConfiguration("node")
11 references to JavaScriptLaunchConfiguration
Aspire.Hosting.JavaScript (3)
JavaScriptHostingExtensions.cs (3)
2179LaunchMethod = isPackageManagerScript ? JavaScriptLaunchConfiguration.LaunchMethodPackageManager : JavaScriptLaunchConfiguration.LaunchMethodDirect, 2216LaunchMethod = JavaScriptLaunchConfiguration.LaunchMethodPackageManager,
Aspire.Hosting.JavaScript.Tests (8)
AddBunAppTests.cs (4)
368var launchConfig = await CreateLaunchConfigurationAsync(bunApp.Resource); 389var launchConfig = await CreateLaunchConfigurationAsync(bunApp.Resource); 396private static async Task<JavaScriptLaunchConfiguration> CreateLaunchConfigurationAsync(IResource resource) 399return Assert.IsType<JavaScriptLaunchConfiguration>(
AddNodeAppTests.cs (4)
602var launchConfig = await CreateLaunchConfigurationAsync(nodeApp.Resource); 618var launchConfig = await CreateLaunchConfigurationAsync(viteApp.Resource); 628private static async Task<JavaScriptLaunchConfiguration> CreateLaunchConfigurationAsync(IResource resource) 631return Assert.IsType<JavaScriptLaunchConfiguration>(