Skip to content

Commit 99edc5a

Browse files
authored
Update README.md
1 parent fd3a8bc commit 99edc5a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ An implementation of IPasswordHasher<TUser> using [BCrypt.NET - next](https://gi
77
## Installation
88

99
```
10-
services.AddScoped<IPasswordHasher<ApplicationUser>, BCryptPasswordHasher<ApplicationUser>>();
10+
services.AddIdentity<TUser, TRole>();
11+
services.AddScoped<IPasswordHasher<TUser>, BCryptPasswordHasher<TUser>>();
1112
```
1213

1314
### Options

0 commit comments

Comments
 (0)