17 references to System
Aspire.Hosting (6)
ApplicationModel\CertificateAuthorityCollectionAnnotation.cs (1)
20
/// consider using <see cref="Override"/> or <see cref="
System
"/> instead. This is the default mode unless
ApplicationModel\CertificateTrustConfigurationCallbackAnnotation.cs (1)
59
/// <see cref="CertificateTrustScope.Override"/> or <see cref="CertificateTrustScope.
System
"/> is configured.
ApplicationModel\CertificateTrustExecutionConfigurationGatherer.cs (2)
63
if (additionalData.Scope == CertificateTrustScope.
System
)
124
if (additionalData.Scope == CertificateTrustScope.
System
)
ApplicationModel\ContainerCertificatePathsAnnotation.cs (1)
46
/// <see cref="CertificateTrustScope.
System
"/>.
ContainerResourceBuilderExtensions.cs (1)
1301
/// <param name="defaultCertificateBundlePaths">List of default certificate bundle paths in the container that will be replaced in <see cref="CertificateTrustScope.Override"/> or <see cref="CertificateTrustScope.
System
"/> modes. If not specified, defaults to <c>/etc/ssl/certs/ca-certificates.crt</c> for Linux containers.</param>
Aspire.Hosting.Java (3)
JavaHostingExtensions.cs (3)
109
.WithCertificateTrustScope(CertificateTrustScope.
System
)
270
.WithCertificateTrustScope(CertificateTrustScope.
System
)
1677
/// <see cref="CertificateTrustScope.
System
"/> so the generated bundle carries the system roots
Aspire.Hosting.Java.Tests (2)
AddJavaAppTests.cs (1)
894
Assert.Equal(CertificateTrustScope.
System
, certAnnotation.Scope);
AddJavaContainerTests.cs (1)
150
Assert.Equal(CertificateTrustScope.
System
, scope.Scope);
Aspire.Hosting.JavaScript (2)
JavaScriptHostingExtensions.cs (2)
1097
if (ctx.Scope is CertificateTrustScope.Append or CertificateTrustScope.Override or CertificateTrustScope.
System
)
1114
else if (ctx.Scope == CertificateTrustScope.
System
)
Aspire.Hosting.JavaScript.Tests (1)
AddDenoAppTests.cs (1)
2467
Scope = CertificateTrustScope.
System
,
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
404
.WithCertificateTrustScope(CertificateTrustScope.
System
)
Aspire.Hosting.Tests (2)
ExecutionConfigurationGathererTests.cs (2)
314
.WithCertificateTrustScope(CertificateTrustScope.
System
)
329
Assert.Equal(CertificateTrustScope.
System
, metadata.Scope);