1 instantiation of ContainerCertificatePathsAnnotation
Aspire.Hosting (1)
ContainerResourceBuilderExtensions.cs (1)
1178return builder.WithAnnotation(new ContainerCertificatePathsAnnotation
8 references to ContainerCertificatePathsAnnotation
Aspire.Hosting (6)
ContainerResourceBuilderExtensions.cs (1)
1162/// 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)
2150var certificatesDestination = ContainerCertificatePathsAnnotation.DefaultCustomCertificatesDestination; 2151var bundlePaths = ContainerCertificatePathsAnnotation.DefaultCertificateBundlePaths.ToList(); 2152var certificateDirsPaths = ContainerCertificatePathsAnnotation.DefaultCertificateDirectoriesPaths.ToList(); 2154if (cr.ModelResource.TryGetLastAnnotation<ContainerCertificatePathsAnnotation>(out var pathsAnnotation))
Aspire.Hosting.Tests (2)
DistributedApplicationTests.cs (2)
853expectedDefaultCertificateDirs.AddRange(ContainerCertificatePathsAnnotation.DefaultCertificateDirectoriesPaths); 854expectedDefaultBundleFiles.AddRange(ContainerCertificatePathsAnnotation.DefaultCertificateBundlePaths);