9 references to Append
Aspire.Hosting (8)
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;
ContainerResourceBuilderExtensions.cs (3)
1132
return builder.WithAnnotation(annotation, ResourceAnnotationMutationBehavior.
Append
);
1203
return builder.WithAnnotation(annotation, ResourceAnnotationMutationBehavior.
Append
);
1245
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)
1330
ResourceAnnotationMutationBehavior behavior = ResourceAnnotationMutationBehavior.
Append
) where T : IResourceWithContainerFiles
Aspire.Hosting.Maui (1)
MauiPlatformHelper.cs (1)
105
resourceBuilder.WithAnnotation(new UnsupportedPlatformAnnotation(reason), ResourceAnnotationMutationBehavior.
Append
);