我在添加ProtectKeysWithCertificate这行
时遇到编译时错误public IServiceProvider ConfigureServices(IServiceCollection services)
{
services.AddDataProtection()
.SetApplicationName("Testervice")
.ProtectKeysWithCertificate(newCert);
//compile time error on ProtectKeysWithCertificate line
//method not found
}
答案 0 :(得分:1)
如上所述in the documentation,{1}}在.NET Core 1.0 / 1.1(ProtectKeysWithCertificate()
)上不可用。
如果要使用它,可以定位完整的.NET Framework(例如netcoreapp1.x
)。