5 instantiations of AzureContainerAppCustomizationAnnotation
Aspire.Hosting.Azure.AppContainers (3)
AzureContainerAppContainerExtensions.cs (1)
48container.WithAnnotation(new AzureContainerAppCustomizationAnnotation(configure));
AzureContainerAppExecutableExtensions.cs (1)
48return executable.WithAnnotation(new AzureContainerAppCustomizationAnnotation(configure));
AzureContainerAppProjectExtensions.cs (1)
49project.WithAnnotation(new AzureContainerAppCustomizationAnnotation(configure));
Aspire.Hosting.Azure.Tests (2)
AzureContainerAppsTests.cs (1)
1857.WithAnnotation(new AzureContainerAppCustomizationAnnotation((_, _) => { }));
PublicApiTests\AppContainersPublicApiTests.cs (1)
42var action = () => new AzureContainerAppCustomizationAnnotation(configure);
4 references to AzureContainerAppCustomizationAnnotation
Aspire.Hosting.Azure.AppContainers (4)
AzureContainerAppExtensions.cs (1)
84if (r.HasAnnotationOfType<AzureContainerAppCustomizationAnnotation>() ||
ContainerAppContext.cs (2)
91if (Resource.TryGetAnnotationsOfType<AzureContainerAppCustomizationAnnotation>(out var annotations)) 93foreach (var a in annotations)
ContainerAppEnvironmentContext.cs (1)
100bool hasAppCustomization = resource.HasAnnotationOfType<AzureContainerAppCustomizationAnnotation>();