Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1139)

Unified Diff: Calendar.ASP.NET.MVC5/Global.asax.cs

Issue 194980043: Issue 6: Create an ASP.Net MVC Sample Base URL: https://google-api-dotnet-client.samples.googlecode.com/hg/
Patch Set: Addressed peleyal's comments Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Calendar.ASP.NET.MVC5/Global.asax ('k') | Calendar.ASP.NET.MVC5/Migrations/201411270135001_Init.cs » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Calendar.ASP.NET.MVC5/Global.asax.cs
===================================================================
new file mode 100644
--- /dev/null
+++ b/Calendar.ASP.NET.MVC5/Global.asax.cs
@@ -0,0 +1,23 @@
+// This file is added automatically by the MVC 5 application template.
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.Mvc;
+using System.Web.Optimization;
+using System.Web.Routing;
+
+namespace Calendar.ASP.NET.MVC5
+{
+ public class MvcApplication : System.Web.HttpApplication
+ {
+ protected void Application_Start()
+ {
+ AreaRegistration.RegisterAllAreas();
+ FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
+ RouteConfig.RegisterRoutes(RouteTable.Routes);
+ BundleConfig.RegisterBundles(BundleTable.Bundles);
+ }
+ }
+}
« no previous file with comments | « Calendar.ASP.NET.MVC5/Global.asax ('k') | Calendar.ASP.NET.MVC5/Migrations/201411270135001_Init.cs » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b