We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd3a8bc commit 99edc5aCopy full SHA for 99edc5a
README.md
@@ -7,7 +7,8 @@ An implementation of IPasswordHasher<TUser> using [BCrypt.NET - next](https://gi
7
## Installation
8
9
```
10
-services.AddScoped<IPasswordHasher<ApplicationUser>, BCryptPasswordHasher<ApplicationUser>>();
+services.AddIdentity<TUser, TRole>();
11
+services.AddScoped<IPasswordHasher<TUser>, BCryptPasswordHasher<TUser>>();
12
13
14
### Options
0 commit comments