7 references to Ignore
Aspire.Hosting (2)
BuiltInDistributedApplicationEventSubscriptionHandlers.cs (1)
41dashboardResource.Annotations.Add(ManifestPublishingCallbackAnnotation.Ignore);
ResourceBuilderExtensions.cs (1)
967return builder.WithAnnotation(ManifestPublishingCallbackAnnotation.Ignore);
Aspire.Hosting.Azure (1)
AzureResourcePreparer.cs (1)
128if (resource.TryGetLastAnnotation<ManifestPublishingCallbackAnnotation>(out var lastAnnotation) && lastAnnotation == ManifestPublishingCallbackAnnotation.Ignore)
Aspire.Hosting.Azure.AppContainers (1)
AzureContainerAppsInfrastructure.cs (1)
47if (r.TryGetLastAnnotation<ManifestPublishingCallbackAnnotation>(out var lastAnnotation) && lastAnnotation == ManifestPublishingCallbackAnnotation.Ignore)
Aspire.Hosting.Docker (1)
DockerComposeInfrastructure.cs (1)
44if (r.TryGetLastAnnotation<ManifestPublishingCallbackAnnotation>(out var lastAnnotation) && lastAnnotation == ManifestPublishingCallbackAnnotation.Ignore)
Aspire.Hosting.Kubernetes (1)
KubernetesInfrastructure.cs (1)
44if (r.TryGetLastAnnotation<ManifestPublishingCallbackAnnotation>(out var lastAnnotation) && lastAnnotation == ManifestPublishingCallbackAnnotation.Ignore)
Aspire.Hosting.Tests (1)
Dashboard\DashboardResourceTests.cs (1)
533Assert.Same(ManifestPublishingCallbackAnnotation.Ignore, annotation);