1 instantiation of ExcludeLaunchProfileAnnotation
Aspire.Hosting (1)
ProjectResourceBuilderExtensions.cs (1)
615builder.WithAnnotation(new ExcludeLaunchProfileAnnotation());
8 references to ExcludeLaunchProfileAnnotation
Aspire.Hosting (3)
ApplicationModel\ProjectLaunchConfigurationFactory.cs (1)
33DisableLaunchProfile = resource.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _)
src\Shared\LaunchProfiles\LaunchProfileExtensions.cs (2)
25if (projectResource.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _)) 188if (projectResource.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _))
Aspire.Hosting.Azure.Functions (2)
src\Shared\LaunchProfiles\LaunchProfileExtensions.cs (2)
25if (projectResource.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _)) 188if (projectResource.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _))
Aspire.Hosting.Dotnet (2)
src\Shared\LaunchProfiles\LaunchProfileExtensions.cs (2)
25if (projectResource.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _)) 188if (projectResource.TryGetLastAnnotation<ExcludeLaunchProfileAnnotation>(out _))
Aspire.Hosting.Tests (1)
ProjectResourceTests.cs (1)
375Assert.Contains(resource.Annotations, a => a is ExcludeLaunchProfileAnnotation);