Files
Eonasdan e1fc9e108b massive change to the solution (#151)
Nice work...I'm not in love with the fact that it still has that github change in it, but I'll take it...I don't think its too dangerous.

That being said breaking these packages apart is both very helpful, and not simple so thank you for that!

I'll plan on publishing to nuget later this week after some testing...
2016-04-18 08:49:34 -04:00

18 lines
498 B
C#

using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace OwinOAuthProvidersDemo
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
}
}