ASP.NET无法添加参考

时间:2019-03-10 11:00:58

标签: asp.net-core asp.net-core-mvc asp.net-identity

using System;
using Microsoft.AspNetCore.Identity;

namespace SC.BL.Domain
{
    // Add profile data for application users by adding properties to the WebApp1User class
    public class WebApp1User : IdentityUser
    {
        public string OwnerID { get; set; }
        [PersonalData]
        public string Name { get; set; }
        [PersonalData]
        public DateTime DOB { get; set; }
        public UserStatus UserStatus { get; set; }

    }

    public enum UserStatus
    {
        Submitted,
        Approved,
        Rejected
    }
}

在参考中找不到AspNetCore:使用Microsoft.AspNetCore.Identity 参见图片以获取更多详细信息image

1 个答案:

答案 0 :(得分:0)

将以下PackageReference添加到YourProject.csproj文件并重建。问题应该消失,因为此元软件包包含用于 ASP.NET Core版本<= 2.2

的ASP.NET Core MVC,实体框架核心和ASP.NET Core标识的所有必需软件包。
 <ItemGroup>
    <PackageReference Include="Microsoft.AspNetCore.App"/>
    .......
 </ItemGroup>