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)
44additionalData.Scope = CertificateTrustScope.Append; 91if (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)
707if (scope == CertificateTrustScope.Append) 744if (certificateTrustConfiguration.Scope != CertificateTrustScope.Append)
Dcp\ExecutableConfigurationResolver.cs (1)
49if (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)
735Scope = CertificateTrustScope.Append,
Aspire.Hosting.Java (2)
JavaHostingExtensions.cs (2)
1679/// <see cref="CertificateTrustScope.Append"/>, the bundle would contain only Aspire's own 1688if (ctx.Scope == CertificateTrustScope.Append)
Aspire.Hosting.Java.Tests (1)
AddJavaAppTests.cs (1)
921Scope = CertificateTrustScope.Append,
Aspire.Hosting.JavaScript (3)
JavaScriptHostingExtensions.cs (3)
306if (ctx.Scope == CertificateTrustScope.Append) 723if (ctx.Scope == CertificateTrustScope.Append) 1097if (ctx.Scope is CertificateTrustScope.Append or CertificateTrustScope.Override or CertificateTrustScope.System)
Aspire.Hosting.JavaScript.Tests (2)
AddBunAppTests.cs (1)
264Scope = CertificateTrustScope.Append,
AddDenoAppTests.cs (1)
2410Scope = CertificateTrustScope.Append,
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
407if (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)] 1023if (trustScope == CertificateTrustScope.Append) 1044if (trustScope == CertificateTrustScope.Append)
ExecutionConfigurationGathererTests.cs (2)
300Assert.Equal(CertificateTrustScope.Append, metadata.Scope); 420.WithCertificateTrustScope(CertificateTrustScope.Append)