4 instantiations of ManifestPublishingCallbackAnnotation
Aspire.Hosting (3)
ApplicationModel\ManifestPublishingCallbackAnnotation.cs (1)
47
public static ManifestPublishingCallbackAnnotation Ignore { get; } =
new
(null);
ResourceBuilderExtensions.cs (2)
269
return builder.WithAnnotation(new
ManifestPublishingCallbackAnnotation
(callback), ResourceAnnotationMutationBehavior.Replace);
285
return builder.WithAnnotation(new
ManifestPublishingCallbackAnnotation
(callback), ResourceAnnotationMutationBehavior.Replace);
Aspire.Hosting.Azure (1)
AzureBicepResource.cs (1)
31
Annotations.Add(new
ManifestPublishingCallbackAnnotation
(WriteToManifest));
16 references to ManifestPublishingCallbackAnnotation
Aspire.Hosting (9)
ApplicationModel\ManifestPublishingCallbackAnnotation.cs (3)
14
/// Initializes a new instance of the <see cref="
ManifestPublishingCallbackAnnotation
"/> class with the specified callback.
30
/// Initializes a new instance of the <see cref="
ManifestPublishingCallbackAnnotation
"/> class with the specified callback.
47
public static
ManifestPublishingCallbackAnnotation
Ignore { get; } = new(null);
BuiltInDistributedApplicationEventSubscriptionHandlers.cs (1)
41
dashboardResource.Annotations.Add(
ManifestPublishingCallbackAnnotation
.Ignore);
Publishing\ManifestPublishingContext.cs (4)
94
if (resource.TryGetLastAnnotation<
ManifestPublishingCallbackAnnotation
>(out
var
manifestPublishingCallbackAnnotation))
183
if (deploymentTarget.DeploymentTarget.TryGetLastAnnotation<
ManifestPublishingCallbackAnnotation
>(out
var
manifestPublishingCallbackAnnotation) &&
ResourceBuilderExtensions.cs (1)
698
return builder.WithAnnotation(
ManifestPublishingCallbackAnnotation
.Ignore);
Aspire.Hosting.Azure.AppContainers (3)
AzureContainerAppsInfrastructure.cs (3)
45
if (r.TryGetLastAnnotation<
ManifestPublishingCallbackAnnotation
>(out
var
lastAnnotation) && lastAnnotation ==
ManifestPublishingCallbackAnnotation
.Ignore)
Aspire.Hosting.Tests (4)
Dashboard\DashboardResourceTests.cs (3)
516
var
annotation = Assert.Single(dashboard.Annotations.OfType<
ManifestPublishingCallbackAnnotation
>());
521
Assert.Same(
ManifestPublishingCallbackAnnotation
.Ignore, annotation);
PublishAsConnectionStringTests.cs (1)
19
Assert.True(redis.Resource.TryGetLastAnnotation<
ManifestPublishingCallbackAnnotation
>(out _));