PageRenderTime 40ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/SLSTOffCampusWeb/Global.asax.cs

https://bitbucket.org/jrobertshawe/off-campus-server
C# | 28 lines | 23 code | 3 blank | 2 comment | 0 complexity | bdc7163bae39bb46d02663adb6779ab1 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Http;
  6. using System.Web.Mvc;
  7. using System.Web.Optimization;
  8. using System.Web.Routing;
  9. namespace SLSTOffCampusWeb
  10. {
  11. // Note: For instructions on enabling IIS6 or IIS7 classic mode,
  12. // visit http://go.microsoft.com/?LinkId=9394801
  13. public class MvcApplication : System.Web.HttpApplication
  14. {
  15. protected void Application_Start()
  16. {
  17. AreaRegistration.RegisterAllAreas();
  18. WebApiConfig.Register(GlobalConfiguration.Configuration);
  19. FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
  20. RouteConfig.RegisterRoutes(RouteTable.Routes);
  21. BundleConfig.RegisterBundles(BundleTable.Bundles);
  22. AuthConfig.RegisterAuth();
  23. }
  24. }
  25. }