1 instantiation of ContainerCertificatePathsAnnotation
Aspire.Hosting (1)
ContainerResourceBuilderExtensions.cs (1)
1148return builder.WithAnnotation(new ContainerCertificatePathsAnnotation
8 references to ContainerCertificatePathsAnnotation
Aspire.Hosting (6)
ContainerResourceBuilderExtensions.cs (1)
1134/// Adds a <see cref="ContainerCertificatePathsAnnotation"/> to the resource that allows overriding the default paths in the container used for certificate trust.
Dcp\DcpExecutor.cs (5)
2002var certificatesDestination = ContainerCertificatePathsAnnotation.DefaultCustomCertificatesDestination; 2003var bundlePaths = ContainerCertificatePathsAnnotation.DefaultCertificateBundlePaths.ToList(); 2004var certificateDirsPaths = ContainerCertificatePathsAnnotation.DefaultCertificateDirectoriesPaths.ToList(); 2006if (cr.ModelResource.TryGetLastAnnotation<ContainerCertificatePathsAnnotation>(out var pathsAnnotation))
Aspire.Hosting.Tests (2)
DistributedApplicationTests.cs (2)
852expectedDefaultCertificateDirs.AddRange(ContainerCertificatePathsAnnotation.DefaultCertificateDirectoriesPaths); 853expectedDefaultBundleFiles.AddRange(ContainerCertificatePathsAnnotation.DefaultCertificateBundlePaths);