Change Authentication Type MVC 5 Project Type

I have developed a fully working MVC 5 website, selecting its authentication as "Individual User Accounts", now I want to change it to use "Organizational User Accounts - Submission" to enable it with our AD via ADFS.

One thing I've done is commenting out the following in the Startup.cs file

[assembly: OwinStartupAttribute(typeof(OneJksbFrontOfficeWebApp.Startup))]
namespace OneJksbFrontOfficeWebApp
{
    public partial class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            //http://alkalinemedia.com/mvc5-infinite-loop-to-login-page/
            //ConfigureAuth(app);
        }
    }
}

      

Is there anything else? And where can I assign the control center value at the level?

thank

+3


source to share





All Articles