Initial commit with LinkedIn provider

This commit is contained in:
Jerrie Pelser
2013-11-13 10:43:51 +07:00
commit 741d89d64e
79 changed files with 29097 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using Microsoft.Owin;
using Owin;
[assembly: OwinStartupAttribute(typeof(OwinOAuthProvidersDemo.Startup))]
namespace OwinOAuthProvidersDemo
{
public partial class Startup
{
public void Configuration(IAppBuilder app)
{
ConfigureAuth(app);
}
}
}