ASP.NET MVC ADD身份验证帐户控制器

时间:2018-12-03 13:30:57

标签: c# asp.net-mvc controller azure-active-directory

我已在Visual Studio 2017中使用Azure身份验证创建了一个项目。 在我的_LoginPartial.cshtml中,我看到这样的一行:

 <li><a asp-area="AzureAD" asp-controller="Account" asp-action="SignOut">Sign out</a></li>

但是我在解决方案资源管理器中都看不到AzureAD asp区域或AccountController。

他们现在在Microsoft dll中烘烤吗?

1 个答案:

答案 0 :(得分:0)

是的,你是对的。

AzureAD asp区域和AccountController在Microsoft.AspNetCore.Authentication.AzureAD.UI dll中烘焙。

有关详细信息,您可以找到here

相关问题