2 writes to DisableLaunchProfile
Aspire.Hosting (1)
ApplicationModel\ProjectLaunchConfigurationFactory.cs (1)
33DisableLaunchProfile = resource.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _)
Aspire.Hosting.Tests (1)
Dcp\DcpExecutorTests.cs (1)
4248DisableLaunchProfile = true
14 references to DisableLaunchProfile
Aspire.Hosting (1)
ApplicationModel\ProjectLaunchConfigurationFactory.cs (1)
37if (!projectLaunchConfiguration.DisableLaunchProfile && resource.GetEffectiveLaunchProfile() is NamedLaunchProfile namedLaunchProfile)
Aspire.Hosting.Dotnet.Tests (2)
DotnetProjectResourceTests.cs (2)
554Assert.True(launchConfig.DisableLaunchProfile); 587Assert.False(launchConfig.DisableLaunchProfile);
Aspire.Hosting.Tests (11)
Dcp\DcpExecutorTests.cs (9)
4194Assert.False(plc!.DisableLaunchProfile); 4272Assert.True(plc.DisableLaunchProfile); 4306Assert.True(plc!.DisableLaunchProfile); 4343Assert.False(plc!.DisableLaunchProfile); 4377Assert.False(plc!.DisableLaunchProfile); 4408Assert.False(plc!.DisableLaunchProfile); 4439Assert.True(plc!.DisableLaunchProfile); 4469Assert.False(plc!.DisableLaunchProfile); // not excluded 4498Assert.False(plc!.DisableLaunchProfile);
DebugSupportExtensionsTests.cs (2)
109Assert.False(launchConfiguration.DisableLaunchProfile); 123Assert.True(launchConfiguration.DisableLaunchProfile);