We used to
app.UseWindowsAzureActiveDirectoryBearerAuthentication( new WindowsAzureActiveDirectoryBearerAuthenticationOptions { Audience = ConfigurationManager.AppSettings["ida:Audience"], Tenant = ConfigurationManager.AppSettings["ida:Tenant"], });
for authentication with Azure. The problem is that today we upgraded to ASP.NET 5 RC1-FINAL , and now this method no longer exists.
I searched the net for other solutions, but the ones I found use some third part authentication services or .UseOAuthBearerAuthentication, which are not available in RC1-Final.
source share