You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 15, 2018. It is now read-only.
I have a clean MVC project (no MS identity framework) with a working version of MembershipReboot. I've now want to integrate IdentityManager. My question is, do I need the files in the config folder (from the host example) as I'm only using MR straight out of the box as I can't seem to get IM working?
This is in my startup.cs
app.Map("/idm", idm =>
{
var factory = new IdentityManagerServiceFactory();
factory.Configure("MembershipReboot");
var options = new IdentityManagerOptions
{
Factory = factory
};
app.Map("/idm", _ => { _.UseIdentityManager(options); });
});