调整了一下项目框架与前端JS代码

This commit is contained in:
yubaolee
2015-09-20 21:59:36 +08:00
parent 2dea364b2b
commit 43f8130e7e
224 changed files with 17851 additions and 3449 deletions

14
OpenAuth.Mvc/Startup.cs Normal file
View File

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