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)
2093var certificatesDestination = ContainerCertificatePathsAnnotation.DefaultCustomCertificatesDestination; 2094var bundlePaths = ContainerCertificatePathsAnnotation.DefaultCertificateBundlePaths.ToList(); 2095var certificateDirsPaths = ContainerCertificatePathsAnnotation.DefaultCertificateDirectoriesPaths.ToList(); 2097if (cr.ModelResource.TryGetLastAnnotation<ContainerCertificatePathsAnnotation>(out var pathsAnnotation))
Aspire.Hosting.Tests (2)
DistributedApplicationTests.cs (2)
853expectedDefaultCertificateDirs.AddRange(ContainerCertificatePathsAnnotation.DefaultCertificateDirectoriesPaths); 854expectedDefaultBundleFiles.AddRange(ContainerCertificatePathsAnnotation.DefaultCertificateBundlePaths);