18 references to Append
Aspire.Hosting (9)
ApplicationModel\CertificateAuthorityCollectionAnnotation.cs (1)
8/// is <see cref="Append"/>, but some resources may choose to override this default behavior.
ApplicationModel\CertificateTrustExecutionConfigurationGatherer.cs (2)
41additionalData.Scope = CertificateTrustScope.Append; 88if (additionalData.Scope != CertificateTrustScope.Append)
ApplicationModel\ContainerCertificatePathsAnnotation.cs (1)
53/// when the resource's <see cref="CertificateTrustScope"/> is set to <see cref="CertificateTrustScope.Append"/>.
ContainerResourceBuilderExtensions.cs (1)
1139/// <param name="defaultCertificateDirectoryPaths">List of default certificate directory paths in the container that may be appended to the custom certificates directory in <see cref="CertificateTrustScope.Append"/> mode. If not specified, defaults to <c>/usr/local/share/ca-certificates/</c> for Linux containers.</param>
Dcp\DcpExecutor.cs (3)
1650if (scope == CertificateTrustScope.Append) 2021if (scope == CertificateTrustScope.Append) 2063if (certificateTrustConfiguration.Scope != CertificateTrustScope.Append)
ResourceBuilderExtensions.cs (1)
2422/// The default scope if not overridden is <see cref="CertificateTrustScope.Append"/> which means that custom certificate
Aspire.Hosting.JavaScript (1)
JavaScriptHostingExtensions.cs (1)
285if (ctx.Scope == CertificateTrustScope.Append)
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
420if (ctx.Scope == CertificateTrustScope.Append)
Aspire.Hosting.Tests (7)
DistributedApplicationTests.cs (5)
814[InlineData(false, false, false, false, CertificateTrustScope.Append)] 815[InlineData(false, true, true, false, CertificateTrustScope.Append)] 816[InlineData(true, false, false, false, CertificateTrustScope.Append)] 874if (trustScope == CertificateTrustScope.Append) 895if (trustScope == CertificateTrustScope.Append)
ExecutionConfigurationGathererTests.cs (2)
228Assert.Equal(CertificateTrustScope.Append, metadata.Scope); 348.WithCertificateTrustScope(CertificateTrustScope.Append)