From the course: ASP.NET Core Identity: Authentication Management

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Creating a web application with Identity

Creating a web application with Identity - ASP.NET Core Tutorial

From the course: ASP.NET Core Identity: Authentication Management

Start my 1-month free trial

Creating a web application with Identity

- [Instructor] On this part, we are going to learn how to create a .NET core application, and we will see how the SQL server database is used to store user related data. To create a .NET core application, we are going to use Visual Studio. I'm going to use Visual Studio 2017 Community Edition, but any version of Visual Studio 2017 or later is going to work just fine. In Visual Studio, to create a new project, go to file, then new, project. Let us provide a solution name, so I'm going to name this solution Identity, and let us provide a project name. We are going to create two .NET core applications. We are going to create one with the .NET 2.0 versions, so for that I'm going to name this project Auth20, which stands for 2.0, and we are going to create another one, of version 2.2, because the identity related files in these two versions are different from each other. Then next from the menu on the left make sure that you have chosen the web, and then in the middle column choose the ASP…

Contents