30 references to Append
Aspire.Hosting (8)
ApplicationModel\CertificateAuthorityCollectionAnnotation.cs (1)
8/// is <see cref="Append"/>, but some resources may choose to override this default behavior.
ApplicationModel\ContainerCertificatePathsAnnotation.cs (1)
53/// when the resource's <see cref="CertificateTrustScope"/> is set to <see cref="CertificateTrustScope.Append"/>.
ApplicationModel\ResourceExtensions.cs (2)
408var scope = CertificateTrustScope.Append; 454if (scope != CertificateTrustScope.Append)
ContainerResourceBuilderExtensions.cs (1)
1060/// <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 (2)
2431if (scope == CertificateTrustScope.Append) 2478if (scope != CertificateTrustScope.Append)
ResourceBuilderExtensions.cs (1)
2335/// The default scope if not overridden is <see cref="CertificateTrustScope.Append"/> which means that custom certificate
Aspire.Hosting.JavaScript (1)
JavaScriptHostingExtensions.cs (1)
196if (ctx.Scope == CertificateTrustScope.Append)
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
372if (ctx.Scope == CertificateTrustScope.Append)
Aspire.Hosting.Tests (20)
DistributedApplicationTests.cs (20)
630[InlineData(null, null, true, false, CertificateTrustScope.Append)] 631[InlineData(null, false, false, false, CertificateTrustScope.Append)] 632[InlineData(null, true, true, false, CertificateTrustScope.Append)] 633[InlineData(false, null, false, false, CertificateTrustScope.Append)] 634[InlineData(false, false, false, false, CertificateTrustScope.Append)] 635[InlineData(false, true, true, false, CertificateTrustScope.Append)] 636[InlineData(true, null, true, false, CertificateTrustScope.Append)] 637[InlineData(true, false, false, false, CertificateTrustScope.Append)] 638[InlineData(true, true, true, false, CertificateTrustScope.Append)] 639[InlineData(null, null, true, true, CertificateTrustScope.Append)] 640[InlineData(null, false, false, true, CertificateTrustScope.Append)] 641[InlineData(null, true, true, true, CertificateTrustScope.Append)] 642[InlineData(false, null, false, true, CertificateTrustScope.Append)] 643[InlineData(false, false, false, true, CertificateTrustScope.Append)] 644[InlineData(false, true, true, true, CertificateTrustScope.Append)] 645[InlineData(true, null, true, true, CertificateTrustScope.Append)] 646[InlineData(true, false, false, true, CertificateTrustScope.Append)] 647[InlineData(true, true, true, true, CertificateTrustScope.Append)] 734if (trustScope == CertificateTrustScope.Append) 755if (trustScope == CertificateTrustScope.Append)