TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Guest User
Tech Writer
2.1k
470.8k
ApplicationSignInManager could not be found?
Feb 27 2020 6:27 AM
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?'
using
System.Collections.Generic;
using
System.Linq;
using
System.Web;
using
Microsoft.AspNet.Identity;
using
Microsoft.AspNet.Identity.Owin;
using
Microsoft.Owin.Security.Cookies;
using
Owin;
using
eNtsaTrainingRegistration.Models;
namespace
eNtsaTrainingRegistration
{
public
partial
class
Startup
{
public
void
ConfigureAuth(IAppBuilder app)
{
app.CreatePerOwinContext(ApplicationDbContext.Create);
app.CreatePerOwinContext<ApplicationSignInManager>(ApplicationSignInManager.Create);
// Error message.
}
}
}
Reply
Answers (
4
)
encryption and decryption of data in C#
Serverless vs. Microservices architecture: How to choose