1 instantiation of ContainerCertificatePathsAnnotation
Aspire.Hosting (1)
ContainerResourceBuilderExtensions.cs (1)
1135return builder.WithAnnotation(new ContainerCertificatePathsAnnotation
8 references to ContainerCertificatePathsAnnotation
Aspire.Hosting (6)
ContainerResourceBuilderExtensions.cs (1)
1121/// 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)
1933var certificatesDestination = ContainerCertificatePathsAnnotation.DefaultCustomCertificatesDestination; 1934var bundlePaths = ContainerCertificatePathsAnnotation.DefaultCertificateBundlePaths.ToList(); 1935var certificateDirsPaths = ContainerCertificatePathsAnnotation.DefaultCertificateDirectoriesPaths.ToList(); 1937if (cr.ModelResource.TryGetLastAnnotation<ContainerCertificatePathsAnnotation>(out var pathsAnnotation))
Aspire.Hosting.Tests (2)
DistributedApplicationTests.cs (2)
709expectedDefaultCertificateDirs.AddRange(ContainerCertificatePathsAnnotation.DefaultCertificateDirectoriesPaths); 710expectedDefaultBundleFiles.AddRange(ContainerCertificatePathsAnnotation.DefaultCertificateBundlePaths);