/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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Optimization;
  6. using System.Web.Routing;
  7. using System.Web.Security;
  8. using System.Web.SessionState;
  9. namespace Signs.Web
  10. {
  11. public class Global : HttpApplication
  12. {
  13. void Application_Start(object sender, EventArgs e)
  14. {
  15. // Code that runs on application startup
  16. RouteConfig.RegisterRoutes(RouteTable.Routes);
  17. BundleConfig.RegisterBundles(BundleTable.Bundles);
  18. }
  19. }
  20. }