4
Answers

ApplicationSignInManager could not be found?

Photo of Guest User

Guest User

5y
1.2k
1
Hi Team
 
I am having Startup class and create below properties, some strange reason it does not want to load dll file to these libraries 'ApplicationSignInManager could be found, missing some assembly?' 
  1. using System.Collections.Generic;  
  2. using System.Linq;  
  3. using System.Web;  
  4. using Microsoft.AspNet.Identity;  
  5. using Microsoft.AspNet.Identity.Owin;  
  6. using Microsoft.Owin.Security.Cookies;  
  7. using Owin;  
  8. using eNtsaTrainingRegistration.Models;  
  9.   
  10. namespace eNtsaTrainingRegistration  
  11. {  
  12.     public partial class Startup  
  13.     {  
  14.         public void ConfigureAuth(IAppBuilder app)  
  15.         {  
  16.             app.CreatePerOwinContext(ApplicationDbContext.Create);  
  17.             app.CreatePerOwinContext<ApplicationSignInManager>(ApplicationSignInManager.Create); // Error message.  
  18.         }  
  19.     }  
  20. }  
 

Answers (4)