16 references to Append
Aspire.Hosting (13)
ApplicationModel\IResourceBuilder.cs (2)
29
IResourceBuilder<T> WithAnnotation<TAnnotation>(ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.
Append
) where TAnnotation : IResourceAnnotation, new() => WithAnnotation(new TAnnotation(), behavior);
39
IResourceBuilder<T> WithAnnotation<TAnnotation>(TAnnotation annotation, ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.
Append
) where TAnnotation : IResourceAnnotation;
ApplicationModel\ResourceExtensions.cs (2)
490
return builder.WithAnnotation(new ContainerBuildOptionsCallbackAnnotation(callback), ResourceAnnotationMutationBehavior.
Append
);
511
return builder.WithAnnotation(new ContainerBuildOptionsCallbackAnnotation(callback), ResourceAnnotationMutationBehavior.
Append
);
ContainerResourceBuilderExtensions.cs (6)
83
}), ResourceAnnotationMutationBehavior.
Append
);
776
.WithAnnotation(defaultContainerBuildOptions, ResourceAnnotationMutationBehavior.
Append
)
781
.WithAnnotation(defaultContainerBuildOptions, ResourceAnnotationMutationBehavior.
Append
)
1245
return builder.WithAnnotation(annotation, ResourceAnnotationMutationBehavior.
Append
);
1318
return builder.WithAnnotation(annotation, ResourceAnnotationMutationBehavior.
Append
);
1362
return builder.WithAnnotation(annotation, ResourceAnnotationMutationBehavior.
Append
);
DistributedApplicationResourceBuilder.cs (2)
14
public IResourceBuilder<T> WithAnnotation<TAnnotation>(TAnnotation annotation, ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.
Append
) where TAnnotation : IResourceAnnotation
20
if (behavior != ResourceAnnotationMutationBehavior.
Append
&& behavior != ResourceAnnotationMutationBehavior.Replace)
ResourceBuilderExtensions.cs (1)
2833
return builder.WithAnnotation(annotation, ResourceAnnotationMutationBehavior.
Append
);
Aspire.Hosting.Azure.Sql (1)
AzureSqlServerResource.cs (1)
647
public IResourceBuilder<T> WithAnnotation<TAnnotation>(TAnnotation annotation, ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.
Append
) where TAnnotation : IResourceAnnotation
Aspire.Hosting.Maui (1)
MauiPlatformHelper.cs (1)
107
resourceBuilder.WithAnnotation(new UnsupportedPlatformAnnotation(reason), ResourceAnnotationMutationBehavior.
Append
);
Aspire.Hosting.RemoteHost.Tests (1)
CapabilityDispatcherTests.cs (1)
1783
public IResourceBuilder<T> WithAnnotation<TAnnotation>(TAnnotation annotation, ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.
Append
) where TAnnotation : IResourceAnnotation