Last active
June 18, 2016 17:49
-
-
Save omkarkhair/7f28bc7560709c475b667a5910dae986 to your computer and use it in GitHub Desktop.
OWIN Open ID Connect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Owin; | |
using Microsoft.Owin; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
[assembly: OwinStartup(typeof(PUGWebApp.Startup))] | |
namespace PUGWebApp | |
{ | |
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