Capitalize occurrences of Identity

pull/3838/head
Scott Addie 2017-07-27 14:50:31 -05:00 committed by GitHub
parent 77df9f7881
commit 30999bac7c
1 changed files with 7 additions and 7 deletions

View File

@ -34,15 +34,15 @@ 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 .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.
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).
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`.
2. Configure Identity services and add middleware in `Startup`.
The identity services are added to the application in the `ConfigureServices` method in the `Startup` class:
The Identity services are added to the application in the `ConfigureServices` method in the `Startup` class:
[!code-csharp[Main](identity/sample/src/ASPNET-IdentityDemo/Startup.cs?name=configureservices&highlight=7-9,13-34)]
@ -115,9 +115,9 @@ In this topic, you'll learn how to use ASP.NET Core Identity to add functionalit
## Identity Components
The primary reference assembly for the identity system is `Microsoft.AspNetCore.Identity`. This package contains the core set of interfaces for ASP.NET Core Identity, and is included by `Microsoft.AspNetCore.Identity.EntityFrameworkCore`.
The primary reference assembly for the Identity system is `Microsoft.AspNetCore.Identity`. This package contains the core set of interfaces for ASP.NET Core Identity, and is included by `Microsoft.AspNetCore.Identity.EntityFrameworkCore`.
These dependencies are needed to use the identity system in ASP.NET Core applications:
These dependencies are needed to use the Identity system in ASP.NET Core applications:
* `Microsoft.AspNetCore.Identity.EntityFrameworkCore` - Contains the required types to use Identity with Entity Framework Core.
@ -127,7 +127,7 @@ These dependencies are needed to use the identity system in ASP.NET Core applica
## Migrating to ASP.NET Core Identity
For additional information and guidance on migrating your existing identity store see [Migrating Authentication and Identity](xref:migration/identity).
For additional information and guidance on migrating your existing Identity store see [Migrating Authentication and Identity](xref:migration/identity).
## Next Steps