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