28 writes to Tags
Aspire.Hosting (4)
ApplicationModel\ProjectResource.cs (2)
47Tags = [WellKnownPipelineTags.BuildCompute], 60Tags = [WellKnownPipelineTags.PushContainerImage],
ContainerResourceBuilderExtensions.cs (2)
53Tags = [WellKnownPipelineTags.BuildCompute], 67Tags = [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)
41Tags = ["print-summary"],
AzureContainerAppResource.cs (2)
70Tags = ["print-summary"], 79Tags = [WellKnownPipelineTags.DeployCompute]
Aspire.Hosting.Azure.AppService (5)
AzureAppServiceEnvironmentResource.cs (1)
44Tags = ["print-summary"],
AzureAppServiceWebSiteResource.cs (4)
67Tags = ["check-website-exists"], 103Tags = ["update-website-provisionable-resource"], 134Tags = ["print-summary"], 143Tags = [WellKnownPipelineTags.DeployCompute]
Aspire.Hosting.Azure.ContainerRegistry (1)
AzureContainerRegistryResource.cs (1)
33Tags = ["acr-login"],
Aspire.Hosting.Docker (3)
DockerComposeEnvironmentResource.cs (2)
120Tags = ["docker-compose-up"], 130Tags = ["docker-compose-down"]
DockerComposeServiceResource.cs (1)
48Tags = ["print-summary"],
Aspire.Hosting.Tests (10)
Pipelines\DistributedApplicationPipelineTests.cs (10)
1391Tags = ["tag1", "tag2"] 1492Tags = ["test-tag"] 1499Tags = ["test-tag", "another-tag"] 1506Tags = ["different-tag"] 1594Tags = ["build"] 1600Tags = ["deploy"] 1750Tags = [WellKnownPipelineTags.ProvisionInfrastructure] 1761Tags = [WellKnownPipelineTags.ProvisionInfrastructure] 1772Tags = [WellKnownPipelineTags.BuildCompute] 1783Tags = [WellKnownPipelineTags.DeployCompute]
21 references to Tags
Aspire.Hosting (4)
Pipelines\DistributedApplicationPipeline.cs (2)
921if (step.Tags.Count > 0) 923var 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)
789var buildStep = steps.Single(s => s.Tags.Contains(WellKnownPipelineTags.BuildCompute)); 794var pushStep = steps.Single(s => s.Tags.Contains(WellKnownPipelineTags.PushContainerImage)); 951var buildStep = steps.Single(s => s.Tags.Contains(WellKnownPipelineTags.BuildCompute)); 956var pushStep = steps.Single(s => s.Tags.Contains(WellKnownPipelineTags.PushContainerImage)); 991var buildStep = steps.Single(s => s.Tags.Contains(WellKnownPipelineTags.BuildCompute)); 996var 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)
1394Assert.Equal(2, step.Tags.Count); 1395Assert.Contains("tag1", step.Tags); 1396Assert.Contains("tag2", step.Tags);
ProjectResourceTests.cs (2)
769Assert.Contains(WellKnownPipelineTags.BuildCompute, buildStep.Tags); 774Assert.Contains(WellKnownPipelineTags.PushContainerImage, pushStep.Tags);