追加する必要があるドキュメントによると、Startup.cs のセットアップに問題があります
services.AddAuthentication()
.AddCertificate(options =>
{
options.AllowedCertificateTypes = CertificateTypes.All;
options.RevocationMode = X509RevocationMode.NoCheck;
});
しかし、私はエラーが発生しました:
「AuthenticationBuilder」には「AddCertificate」の定義が含まれておらず、拡張メソッド「AddCertificate」はありません。
サンプル コードのセットアップIdentityServer(HOST)/ConsoleMTLSClient
では動作します。