1 instantiation of NamedLaunchProfile
Aspire.Hosting (1)
src\Shared\LaunchProfiles\LaunchProfileExtensions.cs (1)
47return new NamedLaunchProfile(launchProfileName, launchProfile);
3 references to NamedLaunchProfile
Aspire.Hosting (3)
ApplicationModel\ProjectLaunchConfigurationFactory.cs (1)
37if (!projectLaunchConfiguration.DisableLaunchProfile && resource.GetEffectiveLaunchProfile() is NamedLaunchProfile namedLaunchProfile)
ProjectResourceBuilderExtensions.cs (1)
631var effectiveLaunchProfile = options.ExcludeLaunchProfile ? null : projectResource.GetEffectiveLaunchProfile(throwIfNotFound: true);
src\Shared\LaunchProfiles\LaunchProfileExtensions.cs (1)
33internal static NamedLaunchProfile? GetEffectiveLaunchProfile(this IResource projectResource, bool throwIfNotFound = false)