Initial commit with LinkedIn provider
This commit is contained in:
14
OwinOAuthProvidersDemo/Startup.cs
Normal file
14
OwinOAuthProvidersDemo/Startup.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user