20 instantiations of PipelineConfigurationAnnotation
Aspire.Hosting (4)
ApplicationModel\ProjectResource.cs (1)
88Annotations.Add(new PipelineConfigurationAnnotation(context =>
ContainerResourceBuilderExtensions.cs (1)
99return builder.WithAnnotation(new PipelineConfigurationAnnotation(context =>
Pipelines\PipelineStepFactoryExtensions.cs (2)
145return builder.WithAnnotation(new PipelineConfigurationAnnotation(callback)); 164return builder.WithAnnotation(new PipelineConfigurationAnnotation(callback));
Aspire.Hosting.Azure (1)
AzureBicepResource.cs (1)
62Annotations.Add(new PipelineConfigurationAnnotation(context =>
Aspire.Hosting.Azure.AppContainers (2)
AzureContainerAppEnvironmentResource.cs (1)
118Annotations.Add(new PipelineConfigurationAnnotation(context =>
AzureContainerAppResource.cs (1)
90Annotations.Add(new PipelineConfigurationAnnotation((context) =>
Aspire.Hosting.Azure.AppService (2)
AzureAppServiceEnvironmentResource.cs (1)
135Annotations.Add(new PipelineConfigurationAnnotation(context =>
AzureAppServiceWebSiteResource.cs (1)
88Annotations.Add(new PipelineConfigurationAnnotation((context) =>
Aspire.Hosting.Azure.ContainerRegistry (1)
AzureContainerRegistryResource.cs (1)
41Annotations.Add(new PipelineConfigurationAnnotation((context) =>
Aspire.Hosting.Azure.Kubernetes (2)
AzureKubernetesEnvironmentExtensions.cs (2)
111k8sEnvBuilder.WithAnnotation(new PipelineConfigurationAnnotation(context => 886resource.Annotations.Add(new PipelineConfigurationAnnotation(async context =>
Aspire.Hosting.Azure.Sandboxes (3)
AzureSandboxCleanupResource.cs (1)
21Annotations.Add(new PipelineConfigurationAnnotation(AzureSandboxContainerDeployment.ConfigureStaleCleanupDestroyOrdering));
AzureSandboxGroupResource.cs (2)
81Annotations.Add(new PipelineConfigurationAnnotation(async context => 238sandboxContainer.Annotations.Add(new PipelineConfigurationAnnotation(async context =>
Aspire.Hosting.Docker (1)
DockerComposeEnvironmentResource.cs (1)
209Annotations.Add(new PipelineConfigurationAnnotation(context =>
Aspire.Hosting.Dotnet (1)
DotnetProjectResource.cs (1)
100Annotations.Add(new PipelineConfigurationAnnotation(context =>
Aspire.Hosting.Foundry (1)
HostedAgent\AzureHostedAgentResource.cs (1)
72Annotations.Add(new PipelineConfigurationAnnotation(async (context) =>
Aspire.Hosting.Kubernetes (1)
KubernetesEnvironmentResource.cs (1)
363Annotations.Add(new PipelineConfigurationAnnotation(context =>
Aspire.Hosting.Yarp (1)
YarpResource.cs (1)
27Annotations.Add(new PipelineConfigurationAnnotation(context =>
31 references to PipelineConfigurationAnnotation
Aspire.Hosting (4)
Pipelines\DistributedApplicationPipeline.cs (2)
780var annotations = resource.Annotations.OfType<PipelineConfigurationAnnotation>(); 781foreach (var annotation in annotations)
Pipelines\PipelineConfigurationAnnotation.cs (2)
24/// Initializes a new instance of the <see cref="PipelineConfigurationAnnotation"/> class. 34/// Initializes a new instance of the <see cref="PipelineConfigurationAnnotation"/> class.
Aspire.Hosting.Azure.AppContainers (2)
AzureContainerAppEnvironmentResource.cs (2)
132if (deploymentTarget.TryGetAnnotationsOfType<PipelineConfigurationAnnotation>(out var annotations)) 134foreach (var annotation in annotations)
Aspire.Hosting.Azure.AppService (2)
AzureAppServiceEnvironmentResource.cs (2)
149if (deploymentTarget.TryGetAnnotationsOfType<PipelineConfigurationAnnotation>(out var annotations)) 151foreach (var annotation in annotations)
Aspire.Hosting.Azure.Kubernetes (2)
AzureKubernetesEnvironmentExtensions.cs (2)
888foreach (var annotation in resource.KubernetesEnvironment.Annotations.OfType<PipelineConfigurationAnnotation>())
Aspire.Hosting.Azure.Sandboxes (2)
AzureSandboxGroupResource.cs (2)
87!deploymentTarget.TryGetAnnotationsOfType<PipelineConfigurationAnnotation>(out var annotations)) 92foreach (var annotation in annotations)
Aspire.Hosting.Azure.Tests (13)
AzureContainerAppsTests.cs (1)
2813var configAnnotations = containerAppResource.Annotations.OfType<PipelineConfigurationAnnotation>().ToList();
AzureContainerRegistryTests.cs (1)
228var configAnnotations = acr.Resource.Annotations.OfType<PipelineConfigurationAnnotation>().ToList();
AzureSandboxesTests.cs (11)
2258foreach (var annotation in sandboxContainer.Annotations.OfType<PipelineConfigurationAnnotation>()) 2305foreach (var annotation in sandboxGroup.Resource.Annotations.OfType<PipelineConfigurationAnnotation>() 2306.Concat(cleanupResource.Annotations.OfType<PipelineConfigurationAnnotation>())) 2504foreach (var annotation in sandboxGroup.Resource.Annotations.OfType<PipelineConfigurationAnnotation>()) 2541foreach (var annotation in consumerGroup.Resource.Annotations.OfType<PipelineConfigurationAnnotation>()) 2588foreach (var annotation in sandboxGroup.Resource.Annotations.OfType<PipelineConfigurationAnnotation>())
Aspire.Hosting.Docker (2)
DockerComposeEnvironmentResource.cs (2)
226if (deploymentTarget.TryGetAnnotationsOfType<PipelineConfigurationAnnotation>(out var annotations)) 228foreach (var annotation in annotations)
Aspire.Hosting.Rust.Tests (2)
AddRustAppPublishTests.cs (2)
325foreach (var annotation in model.Resources.SelectMany(resource => resource.Annotations.OfType<PipelineConfigurationAnnotation>()))
Aspire.Hosting.Tests (2)
ContainerRegistryResourceTests.cs (2)
345var pipelineConfigAnnotations = container.Resource.Annotations.OfType<PipelineConfigurationAnnotation>().ToList(); 360var pipelineConfigAnnotations = project.Resource.Annotations.OfType<PipelineConfigurationAnnotation>().ToList();