aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'AirPollutionWebApi/Controllers/HomeController.cs')
-rw-r--r--AirPollutionWebApi/Controllers/HomeController.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/AirPollutionWebApi/Controllers/HomeController.cs b/AirPollutionWebApi/Controllers/HomeController.cs
new file mode 100644
index 0000000..6a83056
--- /dev/null
+++ b/AirPollutionWebApi/Controllers/HomeController.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.Mvc;
+using System.Web.Mvc.Ajax;
+
+namespace AirPollutionWebApi.Controllers
+{
+ public class HomeController : Controller
+ {
+ public ActionResult Index()
+ {
+ var mvcName = typeof(Controller).Assembly.GetName();
+ var isMono = Type.GetType("Mono.Runtime") != null;
+
+ ViewData["Version"] = mvcName.Version.Major + "." + mvcName.Version.Minor;
+ ViewData["Runtime"] = isMono ? "Mono" : ".NET";
+
+ return View();
+ }
+ }
+}