17 references to None
Aspire.Hosting (6)
ApplicationModel\CertificateTrustExecutionConfigurationGatherer.cs (1)
54
if (additionalData.Scope == CertificateTrustScope.
None
)
Dcp\DcpExecutor.cs (3)
1678
&& certificateTrustConfiguration.Scope != CertificateTrustScope.
None
2046
&& certificateTrustConfiguration.Scope != CertificateTrustScope.
None
2077
CertificateTrustScope = certificateTrustConfiguration?.Scope ?? CertificateTrustScope.
None
,
ProjectResourceBuilderExtensions.cs (2)
429
builder.WithCertificateTrustScope(CertificateTrustScope.
None
);
434
if (ctx.Scope != CertificateTrustScope.
None
&& OperatingSystem.IsWindows())
Aspire.Hosting.JavaScript (1)
JavaScriptHostingExtensions.cs (1)
986
.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)
1340
.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)
823
[InlineData(false, false, false, false, CertificateTrustScope.
None
)]
824
[InlineData(false, true, false, false, CertificateTrustScope.
None
)]
825
[InlineData(true, false, false, false, CertificateTrustScope.
None
)]
904
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
);