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