26 writes to Tags
Aspire.Hosting (4)
ApplicationModel\ProjectResource.cs (2)
48Tags = [WellKnownPipelineTags.BuildCompute], 61Tags = [WellKnownPipelineTags.PushContainerImage],
ContainerResourceBuilderExtensions.cs (2)
52Tags = [WellKnownPipelineTags.BuildCompute], 66Tags = [WellKnownPipelineTags.PushContainerImage],
Aspire.Hosting.Azure (2)
AzureBicepResource.cs (1)
54Tags = [WellKnownPipelineTags.ProvisionInfrastructure]
AzureEnvironmentResource.cs (1)
109Tags = [WellKnownPipelineTags.ProvisionInfrastructure],
Aspire.Hosting.Azure.AppContainers (3)
AzureContainerAppEnvironmentResource.cs (1)
43Tags = ["print-summary"],
AzureContainerAppResource.cs (2)
70Tags = ["print-summary"], 79Tags = [WellKnownPipelineTags.DeployCompute]
Aspire.Hosting.Azure.AppService (3)
AzureAppServiceEnvironmentResource.cs (1)
62Tags = ["print-summary"],
AzureAppServiceWebSiteResource.cs (2)
67Tags = ["print-summary"], 76Tags = [WellKnownPipelineTags.DeployCompute]
Aspire.Hosting.Azure.ContainerRegistry (1)
AzureContainerRegistryResource.cs (1)
33Tags = ["acr-login"],
Aspire.Hosting.Docker (3)
DockerComposeEnvironmentResource.cs (2)
117Tags = [DockerComposeUpTag], 127Tags = ["docker-compose-down"]
DockerComposeServiceResource.cs (1)
48Tags = ["print-summary"],
Aspire.Hosting.Tests (10)
Pipelines\DistributedApplicationPipelineTests.cs (10)
1394Tags = ["tag1", "tag2"] 1495Tags = ["test-tag"] 1502Tags = ["test-tag", "another-tag"] 1509Tags = ["different-tag"] 1597Tags = ["build"] 1603Tags = ["deploy"] 1753Tags = [WellKnownPipelineTags.ProvisionInfrastructure] 1764Tags = [WellKnownPipelineTags.ProvisionInfrastructure] 1775Tags = [WellKnownPipelineTags.BuildCompute] 1786Tags = [WellKnownPipelineTags.DeployCompute]
21 references to Tags
Aspire.Hosting (4)
Pipelines\DistributedApplicationPipeline.cs (2)
939if (step.Tags.Count > 0) 941var sortedTags = step.Tags.OrderBy(tag => tag, StringComparer.Ordinal);
Pipelines\PipelineConfigurationContext.cs (2)
51return Steps.Where(s => s.Tags.Contains(tag)); 76return GetSteps(resource).Where(s => s.Tags.Contains(tag));
Aspire.Hosting.Azure.Tests (2)
AzureContainerRegistryTests.cs (2)
160Assert.Contains("acr-login", loginStep.Tags); 218Assert.Contains(WellKnownPipelineTags.ProvisionInfrastructure, provisionStep.Tags);
Aspire.Hosting.Containers.Tests (6)
WithDockerfileTests.cs (6)
783var buildStep = steps.Single(s => s.Tags.Contains(WellKnownPipelineTags.BuildCompute)); 788var pushStep = steps.Single(s => s.Tags.Contains(WellKnownPipelineTags.PushContainerImage)); 945var buildStep = steps.Single(s => s.Tags.Contains(WellKnownPipelineTags.BuildCompute)); 950var pushStep = steps.Single(s => s.Tags.Contains(WellKnownPipelineTags.PushContainerImage)); 985var buildStep = steps.Single(s => s.Tags.Contains(WellKnownPipelineTags.BuildCompute)); 990var pushStep = steps.Single(s => s.Tags.Contains(WellKnownPipelineTags.PushContainerImage));
Aspire.Hosting.Tests (9)
ContainerRegistryResourceTests.cs (4)
385Assert.Contains(WellKnownPipelineTags.PushContainerImage, pushStep.Tags); 409Assert.Contains(WellKnownPipelineTags.PushContainerImage, pushStep.Tags); 433Assert.DoesNotContain(steps, s => s.Tags.Contains(WellKnownPipelineTags.PushContainerImage)); 461Assert.Contains(WellKnownPipelineTags.BuildCompute, buildStep.Tags);
Pipelines\DistributedApplicationPipelineTests.cs (3)
1397Assert.Equal(2, step.Tags.Count); 1398Assert.Contains("tag1", step.Tags); 1399Assert.Contains("tag2", step.Tags);
ProjectResourceTests.cs (2)
802Assert.Contains(WellKnownPipelineTags.BuildCompute, buildStep.Tags); 807Assert.Contains(WellKnownPipelineTags.PushContainerImage, pushStep.Tags);