26 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)
44
additionalData.Scope = CertificateTrustScope.
Append
;
91
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)
1302
/// <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\ContainerCreator.cs (2)
707
if (scope == CertificateTrustScope.
Append
)
744
if (certificateTrustConfiguration.Scope != CertificateTrustScope.
Append
)
Dcp\ExecutableConfigurationResolver.cs (1)
49
if (scope == CertificateTrustScope.
Append
)
ResourceBuilderExtensions.cs (1)
4077
/// The default scope if not overridden is <see cref="CertificateTrustScope.
Append
"/> which means that custom certificate
Aspire.Hosting.Azure.Tests (1)
AzureCosmosDBExtensionsTests.cs (1)
735
Scope = CertificateTrustScope.
Append
,
Aspire.Hosting.Java (2)
JavaHostingExtensions.cs (2)
1679
/// <see cref="CertificateTrustScope.
Append
"/>, the bundle would contain only Aspire's own
1688
if (ctx.Scope == CertificateTrustScope.
Append
)
Aspire.Hosting.Java.Tests (1)
AddJavaAppTests.cs (1)
921
Scope = CertificateTrustScope.
Append
,
Aspire.Hosting.JavaScript (3)
JavaScriptHostingExtensions.cs (3)
306
if (ctx.Scope == CertificateTrustScope.
Append
)
723
if (ctx.Scope == CertificateTrustScope.
Append
)
1097
if (ctx.Scope is CertificateTrustScope.
Append
or CertificateTrustScope.Override or CertificateTrustScope.System)
Aspire.Hosting.JavaScript.Tests (2)
AddBunAppTests.cs (1)
264
Scope = CertificateTrustScope.
Append
,
AddDenoAppTests.cs (1)
2410
Scope = CertificateTrustScope.
Append
,
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
407
if (ctx.Scope == CertificateTrustScope.
Append
)
Aspire.Hosting.Tests (7)
DistributedApplicationTests.cs (5)
963
[InlineData(false, false, false, false, CertificateTrustScope.
Append
)]
964
[InlineData(false, true, true, false, CertificateTrustScope.
Append
)]
965
[InlineData(true, false, false, false, CertificateTrustScope.
Append
)]
1023
if (trustScope == CertificateTrustScope.
Append
)
1044
if (trustScope == CertificateTrustScope.
Append
)
ExecutionConfigurationGathererTests.cs (2)
300
Assert.Equal(CertificateTrustScope.
Append
, metadata.Scope);
420
.WithCertificateTrustScope(CertificateTrustScope.
Append
)