4 references to GetEffectiveLaunchProfile
Aspire.Hosting (4)
Dcp\DcpExecutor.cs (2)
1031if (!projectLaunchConfiguration.DisableLaunchProfile && project.GetEffectiveLaunchProfile() is NamedLaunchProfile namedLaunchProfile) 1282var launchProfileArgs = GetLaunchProfileArgs(project.GetEffectiveLaunchProfile()?.LaunchProfile);
Dcp\ResourceSnapshotBuilder.cs (1)
140launchProfileName = projectResource.GetEffectiveLaunchProfile()?.Name;
ProjectResourceBuilderExtensions.cs (1)
344var effectiveLaunchProfile = options.ExcludeLaunchProfile ? null : projectResource.GetEffectiveLaunchProfile(throwIfNotFound: true);