3 implementations of UseForHttps
Aspire.Hosting (1)
DeveloperCertificateService.cs (1)
166
public bool
UseForHttps
{ get; }
Aspire.Hosting.Tests (2)
ExecutionConfigurationGathererTests.cs (1)
846
public bool
UseForHttps
=> true;
Utils\TestDeveloperCertificateService.cs (1)
23
public bool
UseForHttps
=> !OperatingSystem.IsMacOS() && tlsTerminate && trustCertificate;
3 references to UseForHttps
Aspire.Hosting (3)
ApplicationModel\HttpsCertificateExecutionConfigurationGatherer.cs (1)
42
if (effectiveAnnotation.UseDeveloperCertificate.GetValueOrDefault(developerCertificateService.
UseForHttps
))
ResourceBuilderExtensions.cs (2)
2880
if (developerCertificateService.
UseForHttps
)
2885
else if (annotation.UseDeveloperCertificate.GetValueOrDefault(developerCertificateService.
UseForHttps
) || annotation.Certificate is not null)