will Microsoft.Identity.Web work with Asp.net web apps with aspx pages? if supports how do I register the authentication?.
In .NetCore Startup.cs
services.AddAuthentication().AddMicrosoftIdentityWebApp(Configuration.GetSection("AzureAdB2C"), "b2c", "cookiesB2C");
The above line we use in .net core to configure the identity web.
In Asp.net Webapp which uses aspx
how do we register?