What is the difference between Microsoft.AspNet.Identity.Core and Microsoft.AspNetCore.Identity?

I am implementing an AspNet identity in an ASP.NET MVC application. But when I look at online materials, I am very puzzled by the two dlls Microsoft.Aspnet.Identity.Coreand Microsoft.AspNetCore.Identity.

I know what Microsoft.AspNetCore.Identityshould be used in .NET Core applications, but Microsoft.Aspnet.Identity.Coreit does not seem to have the latest updates and found that it does not even allow the user to log in (throwing Failure in the asp user identity). So my question is: can I use Microsoft.AspNetCore.IdentityMVC in the application or should I stick with it Microsoft.Aspnet.Identity.Core?

+9
source share
1 answer

Microsoft.AspNet.Identity.Core ASP.NET Core, , ( "" ) ASP.NET Identity (pre-ASP.NET Core). ASP.NET Core, Microsoft.AspNet.Identity.Core.

, :

  • ASP.NET Core, Microsoft.AspNetCore.Identity
  • ASP.NET ASP.NET Core, Microsoft.AspNet.Identity.Core.
+19

Source: https://habr.com/ru/post/1663736/


All Articles