2 instantiations of JavaScriptLaunchConfiguration
Aspire.Hosting.JavaScript (2)
JavaScriptHostingExtensions.cs (2)
2841return Task.FromResult(new JavaScriptLaunchConfiguration(effectiveLaunchConfigType) 2891return new JavaScriptLaunchConfiguration("node")
19 references to JavaScriptLaunchConfiguration
Aspire.Hosting.JavaScript (3)
JavaScriptHostingExtensions.cs (3)
2846LaunchMethod = isPackageManagerScript ? JavaScriptLaunchConfiguration.LaunchMethodPackageManager : JavaScriptLaunchConfiguration.LaunchMethodDirect, 2896LaunchMethod = JavaScriptLaunchConfiguration.LaunchMethodPackageManager,
Aspire.Hosting.JavaScript.Tests (16)
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>(
AddDenoAppTests.cs (8)
2571var launchConfig = await CreateLaunchConfigurationAsync(denoApp.Resource); 2592var launchConfig = await CreateLaunchConfigurationAsync(denoApp.Resource); 2611var launchConfig = await CreateLaunchConfigurationAsync(denoApp.Resource); 2630var launchConfig = await CreateLaunchConfigurationAsync(denoApp.Resource); 2646var launchConfig = await CreateLaunchConfigurationAsync(denoApp.Resource); 2663var launchConfig = await CreateLaunchConfigurationAsync(denoApp.Resource); 2684private static async Task<JavaScriptLaunchConfiguration> CreateLaunchConfigurationAsync( 2691return 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>(