17 references to Append
Aspire.Hosting (13)
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;
ApplicationModel\ResourceExtensions.cs (2)
552return builder.WithAnnotation(new ContainerBuildOptionsCallbackAnnotation(callback), ResourceAnnotationMutationBehavior.Append); 572return builder.WithAnnotation(new ContainerBuildOptionsCallbackAnnotation(callback), ResourceAnnotationMutationBehavior.Append);
ContainerResourceBuilderExtensions.cs (6)
105}), ResourceAnnotationMutationBehavior.Append); 876.WithAnnotation(defaultContainerBuildOptions, ResourceAnnotationMutationBehavior.Append) 881.WithAnnotation(defaultContainerBuildOptions, ResourceAnnotationMutationBehavior.Append) 1404return builder.WithAnnotation(annotation, ResourceAnnotationMutationBehavior.Append); 1476return builder.WithAnnotation(annotation, ResourceAnnotationMutationBehavior.Append); 1519return 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)
4287return builder.WithAnnotation(annotation, ResourceAnnotationMutationBehavior.Append);
Aspire.Hosting.Azure.Sql (1)
AzureSqlServerResource.cs (1)
731public IResourceBuilder<T> WithAnnotation<TAnnotation>(TAnnotation annotation, ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.Append) where TAnnotation : IResourceAnnotation
Aspire.Hosting.Maui (1)
MauiPlatformHelper.cs (1)
155resourceBuilder.WithAnnotation(new UnsupportedPlatformAnnotation(reason), ResourceAnnotationMutationBehavior.Append);
Aspire.Hosting.RemoteHost.Tests (1)
CapabilityDispatcherTests.cs (1)
2631public IResourceBuilder<T> WithAnnotation<TAnnotation>(TAnnotation annotation, ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.Append) where TAnnotation : IResourceAnnotation
Aspire.Hosting.Tests (1)
ProjectResourceBuilderExtensionTests.cs (1)
126[InlineData(ResourceAnnotationMutationBehavior.Append, "more than one")]