1

I working on a MVC-5 application and using Asp.Net Identity for user authentication. I have following nugget packages installed in my project:

  • Microsoft ASP.NET Identity EntityFramework version="1.0.0"
  • Microsoft.Owin.Security version="2.0.2"
  • Microsoft.Owin.Security.OAuth version="2.0.2"
  • Microsoft.AspNet.Identity.Owin version="1.0.0"
  • Microsoft.Owin.Host.SystemWeb version="2.0.2"
  • Microsoft.Owin.Hosting version="2.0.2"

Now my issue is that I want to provide reset password functionality to my users. And for this I need IdentityStoreManager class. But IdentityStoreManager is missing ??

Can anybody please help me find out what I am missing ??

Gaurav
  • 8,367
  • 14
  • 55
  • 90
Saurabh
  • 81
  • 1
  • 1
  • 6

1 Answers1

2

I want to provide reset password functionality to my users. And for this I need IdentityStoreManager class

The Asp.Net Identity team announces the preview of Microsoft.AspNet.Identity 2.0.0-alpha1. Now the password reset functionality is accessible by UserManager object. Check this to find out new functionality available with new alpha version.

Here is the nuget packages for new alpha versions:

Edit:

Stable versions are announced, links are updated to stable version.

Gaurav
  • 8,367
  • 14
  • 55
  • 90