1 instantiation of RadiusSecretStoresAnnotation
Aspire.Hosting.Radius (1)
Annotations\RadiusSecretStoresAnnotation.cs (1)
37var created = new RadiusSecretStoresAnnotation();
14 references to RadiusSecretStoresAnnotation
Aspire.Hosting.Radius (12)
Annotations\RadiusSecretStoresAnnotation.cs (5)
24/// Returns the singleton <see cref="RadiusSecretStoresAnnotation"/> on 27internal static RadiusSecretStoresAnnotation GetOrAdd(IResource resource) 31var existing = resource.Annotations.OfType<RadiusSecretStoresAnnotation>().FirstOrDefault(); 37var created = new RadiusSecretStoresAnnotation();
Publishing\RadiusInfrastructureBuilder.cs (4)
171var secretStoresAnnotation = _environment.Annotations 172.OfType<Annotations.RadiusSecretStoresAnnotation>() 1985var annotation = _environment.Annotations 1986.OfType<Annotations.RadiusSecretStoresAnnotation>()
Secrets\RadiusSecretStoreConsumerExtensions.cs (1)
79RadiusSecretStoresAnnotation.GetOrAdd(radius.Resource).Consumers.Add(
Secrets\RadiusSecretStoreValidation.cs (2)
228var annotation = resource.Annotations.OfType<Annotations.RadiusSecretStoresAnnotation>().FirstOrDefault();
Aspire.Hosting.Radius.Tests (2)
Secrets\SecretStoreConsumerTests.cs (2)
28var annotation = env.Resource.Annotations.OfType<RadiusSecretStoresAnnotation>().Single();