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)
40
additionalData.Scope = CertificateTrustScope.
Append
;
87
if (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)
1620
if (scope == CertificateTrustScope.
Append
)
1972
if (scope == CertificateTrustScope.
Append
)
2014
if (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)
283
if (ctx.Scope == CertificateTrustScope.
Append
)
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
423
if (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
)]
875
if (trustScope == CertificateTrustScope.
Append
)
896
if (trustScope == CertificateTrustScope.
Append
)
ExecutionConfigurationGathererTests.cs (2)
228
Assert.Equal(CertificateTrustScope.
Append
, metadata.Scope);
348
.WithCertificateTrustScope(CertificateTrustScope.
Append
)