diff --git a/Settings.StyleCop b/Settings.StyleCop index e4c19d4399..a6345aaf91 100644 --- a/Settings.StyleCop +++ b/Settings.StyleCop @@ -259,6 +259,11 @@ + + + False + + False diff --git a/src/Microsoft.AspNet.Mvc/BuilderExtensions.cs b/src/Microsoft.AspNet.Mvc/BuilderExtensions.cs index 24248742e8..3cb938763a 100644 --- a/src/Microsoft.AspNet.Mvc/BuilderExtensions.cs +++ b/src/Microsoft.AspNet.Mvc/BuilderExtensions.cs @@ -14,7 +14,7 @@ namespace Microsoft.AspNet.Builder return app.UseMvc(routes => { // Action style actions - routes.MapRoute(null, "{controller}/{action}/{id?}", new { controller = "Home" , action = "Index" }); + routes.MapRoute(null, "{controller}/{action}/{id?}", new { controller = "Home", action = "Index" }); // Rest style actions routes.MapRoute(null, "{controller}/{id?}");