17 references to None
Aspire.Hosting (6)
ApplicationModel\CertificateTrustExecutionConfigurationGatherer.cs (1)
53
if (additionalData.Scope == CertificateTrustScope.
None
)
Dcp\DcpExecutor.cs (3)
1648
&& certificateTrustConfiguration.Scope != CertificateTrustScope.
None
1997
&& certificateTrustConfiguration.Scope != CertificateTrustScope.
None
2028
CertificateTrustScope = certificateTrustConfiguration?.Scope ?? CertificateTrustScope.
None
,
ProjectResourceBuilderExtensions.cs (2)
425
builder.WithCertificateTrustScope(CertificateTrustScope.
None
);
430
if (ctx.Scope != CertificateTrustScope.
None
&& OperatingSystem.IsWindows())
Aspire.Hosting.JavaScript (1)
JavaScriptHostingExtensions.cs (1)
895
.WithCertificateTrustScope(CertificateTrustScope.
None
);
Aspire.Hosting.JavaScript.Tests (1)
ResourceCreationTests.cs (1)
211
Assert.Equal(CertificateTrustScope.
None
, certAnnotation.Scope);
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
1346
.WithCertificateTrustScope(CertificateTrustScope.
None
);
Aspire.Hosting.Python.Tests (1)
AddPythonAppTests.cs (1)
840
Assert.Equal(CertificateTrustScope.
None
, certAnnotation.Scope);
Aspire.Hosting.Tests (6)
DistributedApplicationTests.cs (4)
824
[InlineData(false, false, false, false, CertificateTrustScope.
None
)]
825
[InlineData(false, true, false, false, CertificateTrustScope.
None
)]
826
[InlineData(true, false, false, false, CertificateTrustScope.
None
)]
905
if (trustScope == CertificateTrustScope.
None
)
ExecutionConfigurationGathererTests.cs (2)
300
.WithCertificateTrustScope(CertificateTrustScope.
None
)
315
Assert.Equal(CertificateTrustScope.
None
, metadata.Scope);
TestingAppHost1.AppHost (1)
Program.cs (1)
23
.WithCertificateTrustScope(CertificateTrustScope.
None
);