Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Services.WebApp/3.3/Global.asax.cs @ 12428

Last change on this file since 12428 was 12428, checked in by ascheibe, 9 years ago

#2394 added web app and status page to trunk

File size: 600 bytes
Line 
1using System.Web.Http;
2using System.Web.Mvc;
3using System.Web.Optimization;
4using System.Web.Routing;
5using HeuristicLab.Services.WebApp.Configs;
6
7namespace HeuristicLab.Services.WebApp {
8  public class MvcApplication : System.Web.HttpApplication {
9    protected void Application_Start() {
10      AreaRegistration.RegisterAllAreas();
11      GlobalConfiguration.Configure(WebApiConfig.Register);
12      FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
13      RouteConfig.RegisterRoutes(RouteTable.Routes);
14      BundleConfig.RegisterBundles(BundleTable.Bundles);
15    }
16  }
17}
Note: See TracBrowser for help on using the repository browser.