Skip to content

Instantly share code, notes, and snippets.

@andrewconnell
Created December 17, 2014 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewconnell/ec1445c23bb7533df086 to your computer and use it in GitHub Desktop.
Save andrewconnell/ec1445c23bb7533df086 to your computer and use it in GitHub Desktop.
Azure AD & ASP.NET MVC - Walk-Through Implementing ADAL & OWIN - Startup.cs
using Microsoft.Owin;
using Owin;
[assembly: OwinStartup(typeof(SampleMvcAzAuth.Startup))]
namespace SampleMvcAzAuth {
public partial class Startup {
public void Configuration(IAppBuilder app)
{
ConfigureAuth(app);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment