Add Authentication in Asp.net Core project

2

I created an Asp.Net Core MVC project without authentication.

With the project already in progress, I need to add the authentication part and wanted to be able to automatically generate all the files that would be generated if I had placed "Individual User Authentication" in the project creation.

How do I change the authentication from "No Authentication" to "Individual User Authentication" and generate those files after the project is created?

    
asked by anonymous 15.02.2017 / 19:27

1 answer

0

You will have to use the Identity framework for this, and create the screens and classes of it manually.

Here's a Link for the official documentation of how to do that.

    
31.03.2017 / 15:44