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)
408
var scope = CertificateTrustScope.
Append
;
454
if (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)
2431
if (scope == CertificateTrustScope.
Append
)
2478
if (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)
196
if (ctx.Scope == CertificateTrustScope.
Append
)
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
372
if (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
)]
734
if (trustScope == CertificateTrustScope.
Append
)
755
if (trustScope == CertificateTrustScope.
Append
)