Increase visibility of alternative (none VS) approach (#3835)

* Increase visibility of alternative (none VS) approach

* Update identity.md

* Update identity.md
pull/3836/head
Joseph Woodward 2017-07-27 17:14:40 +01:00 committed by Scott Addie
parent 6bc38abf57
commit f15b0b24b6
1 changed files with 5 additions and 1 deletions

View File

@ -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`.