9 references to Append
Aspire.Hosting (8)
ApplicationModel\IResourceBuilder.cs (2)
29IResourceBuilder<T> WithAnnotation<TAnnotation>(ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.Append) where TAnnotation : IResourceAnnotation, new() => WithAnnotation(new TAnnotation(), behavior); 39IResourceBuilder<T> WithAnnotation<TAnnotation>(TAnnotation annotation, ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.Append) where TAnnotation : IResourceAnnotation;
ContainerResourceBuilderExtensions.cs (3)
1132return builder.WithAnnotation(annotation, ResourceAnnotationMutationBehavior.Append); 1203return builder.WithAnnotation(annotation, ResourceAnnotationMutationBehavior.Append); 1245return builder.WithAnnotation(annotation, ResourceAnnotationMutationBehavior.Append);
DistributedApplicationResourceBuilder.cs (2)
14public IResourceBuilder<T> WithAnnotation<TAnnotation>(TAnnotation annotation, ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.Append) where TAnnotation : IResourceAnnotation 20if (behavior != ResourceAnnotationMutationBehavior.Append && behavior != ResourceAnnotationMutationBehavior.Replace)
ResourceBuilderExtensions.cs (1)
1330ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.Append) where T : IResourceWithContainerFiles
Aspire.Hosting.Maui (1)
MauiPlatformHelper.cs (1)
105resourceBuilder.WithAnnotation(new UnsupportedPlatformAnnotation(reason), ResourceAnnotationMutationBehavior.Append);