3 references to HasSubjectKeyIdentifier
Aspire.Hosting (3)
DeveloperCertificateService.cs (2)
44
if (validCerts.Any(c => c.
HasSubjectKeyIdentifier
()))
46
validCerts = validCerts.Where(c => c.
HasSubjectKeyIdentifier
()).ToList();
src\Shared\X509Certificate2Extensions.cs (1)
102
foreach (var certificate in store.Certificates.Where(c => !c.MatchesHostname("localhost") || c.
HasSubjectKeyIdentifier
()))