diff options
author | marcinzelent <zelent.marcin@gmail.com> | 2017-12-01 14:48:19 +0100 |
---|---|---|
committer | marcinzelent <zelent.marcin@gmail.com> | 2017-12-01 14:48:19 +0100 |
commit | c8f0195ccc06575349c0e675c23276ac089bf9c7 (patch) | |
tree | 16a861c8605829bb50dbfd05091b9591f01259c1 /AirPollutionWebApi/Global.asax.cs | |
parent | 918e61788858a9ce8fe4e8680d92752f9af8fc5a (diff) |
Changed name of the project.
Diffstat (limited to 'AirPollutionWebApi/Global.asax.cs')
-rw-r--r-- | AirPollutionWebApi/Global.asax.cs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/AirPollutionWebApi/Global.asax.cs b/AirPollutionWebApi/Global.asax.cs deleted file mode 100644 index aa5b94f..0000000 --- a/AirPollutionWebApi/Global.asax.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System.Web; -using System.Web.Mvc; -using System.Web.Routing; -using System.Web.Http; - -namespace AirPollutionWebApi -{ - public class Global : HttpApplication - { - protected void Application_Start() - { - AreaRegistration.RegisterAllAreas(); - GlobalConfiguration.Configure(WebApiConfig.Register); - RouteConfig.RegisterRoutes(RouteTable.Routes); - } - } -} |