diff --git a/aspnetcore/security/authentication/identity.md b/aspnetcore/security/authentication/identity.md index 821426a96a..2f0f7b1d16 100644 --- a/aspnetcore/security/authentication/identity.md +++ b/aspnetcore/security/authentication/identity.md @@ -26,15 +26,19 @@ In this topic, you'll learn how to use ASP.NET Core Identity to add functionalit 1. Create an ASP.NET Core Web Application project with Individual User Accounts. + # [Visual Studio](#tab/vs0) In Visual Studio, select **File** -> **New** -> **Project**. Select the **ASP.NET Web Application** from the **New Project** dialog box. Selecting an ASP.NET Core **Web Application** with **Individual User Accounts** as the authentication method. Note: You must select **Individual User Accounts**. ![New Project dialog](identity/_static/01-mvc.png) - + + # [.NET Core CLI](#tab/cli) If using the dotnet CLI, create the new project using ``dotnet new mvc --auth Individual``. This will create a new project with the same identity template code Visual Studio creates. The created project contains the `Microsoft.AspNetCore.Identity.EntityFrameworkCore` package, which will persist the identity data and schema to SQL Server using [Entity Framework Core](https://docs.efproject.net). + + --- 2. Configure identity services and add middleware in `Startup`.