Skip to content

Instantly share code, notes, and snippets.

@msarchet
Created January 13, 2013 22:55
Show Gist options
  • Save msarchet/4526651 to your computer and use it in GitHub Desktop.
Save msarchet/4526651 to your computer and use it in GitHub Desktop.
example
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
System.Diagnostics.Debugger.Launch();
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
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