10 lines
377 B
C#
10 lines
377 B
C#
|
public class MvcApplication : System.Web.HttpApplication
|
||
|
{
|
||
|
protected void Application_Start()
|
||
|
{
|
||
|
AreaRegistration.RegisterAllAreas();
|
||
|
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
||
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
||
|
BundleConfig.RegisterBundles(BundleTable.Bundles);
|
||
|
}
|
||
|
}
|