/Signs.Web/Global.asax.cs
https://gitlab.com/weezer562/signs · C# · 21 lines · 19 code · 1 blank · 1 comment · 0 complexity · 03147e9e946c34c503f5407fcab70401 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Optimization;
- using System.Web.Routing;
- using System.Web.Security;
- using System.Web.SessionState;
- namespace Signs.Web
- {
- public class Global : HttpApplication
- {
- void Application_Start(object sender, EventArgs e)
- {
- // Code that runs on application startup
- RouteConfig.RegisterRoutes(RouteTable.Routes);
- BundleConfig.RegisterBundles(BundleTable.Bundles);
- }
- }
- }