From b05b693a108892501c1c16a11b15ecf3f2c6bea3 Mon Sep 17 00:00:00 2001 From: Robson Paproski Date: Sun, 10 Sep 2017 11:14:02 -0300 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b793bdf..ac65478 100644 --- a/README.md +++ b/README.md @@ -28,13 +28,13 @@ Follow the steps below to add to your project 3. In your ApplicationUser class inside Models folder, change ```using Microsoft.AspNetCore.Identity;``` to ```using AspNetCore.Identity.PostgreSQL;``` 5. In your startup.cs class remove any reference to the ApplicationDbContext and the line - ```.AddEntityFrameworkStores\() ``` + ```.AddEntityFrameworkStores() ``` below services.AddIdentity\()" 6. In your startup class, add the following lines bellow services.AddIdentity\() - ```.AddUserStore\\>() - .AddRoleStore\\>()``` + ```.AddUserStore>() + .AddRoleStore>()``` 7. In your startup class, add ```using IdentityRole = AspNetCore.Identity.PostgreSQL.IdentityRole;``` in the using section.