Skip to content

Instantly share code, notes, and snippets.

@gbellmann
Created January 29, 2017 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gbellmann/8397d7d8883e6ba04c676d60924eed0c to your computer and use it in GitHub Desktop.
Save gbellmann/8397d7d8883e6ba04c676d60924eed0c to your computer and use it in GitHub Desktop.
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using Samples.App_Start;
namespace Samples
{
public class MvcApplication : HttpApplication
{
protected void Application_Start()
{
AppInsightsConfig.RegisterAppInsights();
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment