Change "dotnet CLI" to

pull/3836/head
Scott Addie 2017-07-27 11:18:39 -05:00 committed by GitHub
parent 5d65e3df02
commit d13e37ae06
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ In this topic, you'll learn how to use ASP.NET Core Identity to add functionalit
![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.
If using the .NET Core 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).