1 instantiation of ExcludeLaunchProfileAnnotation
Aspire.Hosting (1)
ProjectResourceBuilderExtensions.cs (1)
325builder.WithAnnotation(new ExcludeLaunchProfileAnnotation());
6 references to ExcludeLaunchProfileAnnotation
Aspire.Hosting (3)
Dcp\DcpExecutor.cs (1)
795projectLaunchConfiguration.DisableLaunchProfile = project.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _);
src\Shared\LaunchProfiles\LaunchProfileExtensions.cs (2)
23if (projectResource.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _)) 161if (projectResource.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _))
Aspire.Hosting.Azure.Functions (2)
src\Shared\LaunchProfiles\LaunchProfileExtensions.cs (2)
23if (projectResource.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _)) 161if (projectResource.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _))
Aspire.Hosting.Tests (1)
ProjectResourceTests.cs (1)
298Assert.Contains(resource.Annotations, a => a is ExcludeLaunchProfileAnnotation);