7 writes to IsHttpsDevelopmentCertificate
aspire (1)
JsonSourceGenerationContext.DevCertInfo.g.cs (1)
179
Setter = static (obj, value) => ((global::Aspire.Cli.Certificates.DevCertInfo)obj).
IsHttpsDevelopmentCertificate
= value!,
Aspire.Cli.Tests (6)
Certificates\CertificateServiceTests.cs (6)
30
Certificates = [new DevCertInfo { Version = 5, TrustLevel = DevCertTrustLevel.Full,
IsHttpsDevelopmentCertificate
= true, ValidityNotBefore = DateTimeOffset.Now.AddDays(-1), ValidityNotAfter = DateTimeOffset.Now.AddDays(365) }]
69
Certificates = [new DevCertInfo { Version = 5, TrustLevel = DevCertTrustLevel.None,
IsHttpsDevelopmentCertificate
= true, ValidityNotBefore = DateTimeOffset.Now.AddDays(-1), ValidityNotAfter = DateTimeOffset.Now.AddDays(365) }]
76
Certificates = [new DevCertInfo { Version = 5, TrustLevel = DevCertTrustLevel.Full,
IsHttpsDevelopmentCertificate
= true, ValidityNotBefore = DateTimeOffset.Now.AddDays(-1), ValidityNotAfter = DateTimeOffset.Now.AddDays(365) }]
120
Certificates = [new DevCertInfo { Version = 5, TrustLevel = DevCertTrustLevel.Partial,
IsHttpsDevelopmentCertificate
= true, ValidityNotBefore = DateTimeOffset.Now.AddDays(-1), ValidityNotAfter = DateTimeOffset.Now.AddDays(365) }]
167
Certificates = [new DevCertInfo { Version = 5, TrustLevel = DevCertTrustLevel.Full,
IsHttpsDevelopmentCertificate
= true, ValidityNotBefore = DateTimeOffset.Now.AddDays(-1), ValidityNotAfter = DateTimeOffset.Now.AddDays(365) }]
204
Certificates = [new DevCertInfo { Version = 5, TrustLevel = DevCertTrustLevel.None,
IsHttpsDevelopmentCertificate
= true, ValidityNotBefore = DateTimeOffset.Now.AddDays(-1), ValidityNotAfter = DateTimeOffset.Now.AddDays(365) }]
3 references to IsHttpsDevelopmentCertificate
aspire (3)
DotNet\DotNetCliRunner.cs (1)
385
.Where(c => c.
IsHttpsDevelopmentCertificate
&& c.ValidityNotBefore <= now && now <= c.ValidityNotAfter)
JsonSourceGenerationContext.DevCertInfo.g.cs (2)
178
Getter = static obj => ((global::Aspire.Cli.Certificates.DevCertInfo)obj).
IsHttpsDevelopmentCertificate
,
265
writer.WriteBoolean(PropName_IsHttpsDevelopmentCertificate, ((global::Aspire.Cli.Certificates.DevCertInfo)value).
IsHttpsDevelopmentCertificate
);