Files
MoonPro.net/MP-Site/Global.asax.cs
T
Samuele E. Locatelli 6137434b45 test bundle config...
2018-06-05 18:25:56 +02:00

46 lines
826 B
C#

using System;
using System.Web.Optimization;
using System.Web.Routing;
namespace MoonPro
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
BundleConfig.RegisterBundles(BundleTable.Bundles);
RouteConfig.RegisterRoutes(RouteTable.Routes);
}
protected void Session_Start(object sender, EventArgs e)
{
}
protected void Application_BeginRequest(object sender, EventArgs e)
{
}
protected void Application_AuthenticateRequest(object sender, EventArgs e)
{
}
protected void Application_Error(object sender, EventArgs e)
{
}
protected void Session_End(object sender, EventArgs e)
{
}
protected void Application_End(object sender, EventArgs e)
{
}
}
}