PageRenderTime 44ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/Passbook.Sample.Web/Global.asax.cs

https://github.com/Comezon/dotnet-passbook
C# | 23 lines | 19 code | 2 blank | 2 comment | 0 complexity | f51cf93d0701374004b0a1eb15aca6d8 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Http;
  6. using System.Web.Mvc;
  7. using System.Web.Routing;
  8. namespace Passbook.Sample.Web
  9. {
  10. // Note: For instructions on enabling IIS6 or IIS7 classic mode,
  11. // visit http://go.microsoft.com/?LinkId=9394801
  12. public class MvcApplication : System.Web.HttpApplication
  13. {
  14. protected void Application_Start()
  15. {
  16. AreaRegistration.RegisterAllAreas();
  17. FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
  18. RouteConfig.RegisterRoutes(RouteTable.Routes);
  19. }
  20. }
  21. }