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)
40additionalData.Scope = CertificateTrustScope.Append; 87if (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)
1127/// <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)
1620if (scope == CertificateTrustScope.Append) 1972if (scope == CertificateTrustScope.Append) 2014if (certificateTrustConfiguration.Scope != CertificateTrustScope.Append)
ResourceBuilderExtensions.cs (1)
2394/// The default scope if not overridden is <see cref="CertificateTrustScope.Append"/> which means that custom certificate
Aspire.Hosting.JavaScript (1)
JavaScriptHostingExtensions.cs (1)
283if (ctx.Scope == CertificateTrustScope.Append)
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
423if (ctx.Scope == CertificateTrustScope.Append)
Aspire.Hosting.Tests (7)
DistributedApplicationTests.cs (5)
815[InlineData(false, false, false, false, CertificateTrustScope.Append)] 816[InlineData(false, true, true, false, CertificateTrustScope.Append)] 817[InlineData(true, false, false, false, CertificateTrustScope.Append)] 875if (trustScope == CertificateTrustScope.Append) 896if (trustScope == CertificateTrustScope.Append)
ExecutionConfigurationGathererTests.cs (2)
228Assert.Equal(CertificateTrustScope.Append, metadata.Scope); 348.WithCertificateTrustScope(CertificateTrustScope.Append)