From d13e37ae06e642db8aca3992e7f0386950706641 Mon Sep 17 00:00:00 2001 From: Scott Addie Date: Thu, 27 Jul 2017 11:18:39 -0500 Subject: [PATCH] Change "dotnet CLI" to --- aspnetcore/security/authentication/identity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/security/authentication/identity.md b/aspnetcore/security/authentication/identity.md index 2f0f7b1d16..e7bf8ea991 100644 --- a/aspnetcore/security/authentication/identity.md +++ b/aspnetcore/security/authentication/identity.md @@ -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).