我想向我的应用程序添加身份验证。 有我的代码
TestReferenceLib
我在项目中添加了Microsoft.AspNetCore.Authentication.Abstractions。但是我不知道为什么上下文没有看到扩展方法SignInAsync。
答案 0 :(得分:2)
SignInAsync
是一种扩展方法,位于Microsoft.AspNetCore.Authentication.Abstractions
中,位于Microsoft.AspNetCore.Authentication
名称空间中。
对于您来说,看起来您只需要添加using
语句:
using Microsoft.AspNetCore.Authentication;
这与ASP.NET Core标识和Microsoft.AspNetCore.Identity
包是分开的。