Skip to content

Instantly share code, notes, and snippets.

@omkarkhair
Last active June 18, 2016 17:49
Show Gist options
  • Save omkarkhair/7f28bc7560709c475b667a5910dae986 to your computer and use it in GitHub Desktop.
Save omkarkhair/7f28bc7560709c475b667a5910dae986 to your computer and use it in GitHub Desktop.
OWIN Open ID Connect
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