From 05a2319d84017b48c16ba672899cef41959cdedf Mon Sep 17 00:00:00 2001 From: David Fowler Date: Fri, 18 Apr 2014 00:51:27 -0700 Subject: [PATCH] Moved BuilderExtensions to Microsoft.AspNet namespace --- samples/MvcSample.Web/Startup.cs | 4 ++-- src/Microsoft.AspNet.Mvc/BuilderExtensions.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/MvcSample.Web/Startup.cs b/samples/MvcSample.Web/Startup.cs index a33f431450..358c8cee2d 100644 --- a/samples/MvcSample.Web/Startup.cs +++ b/samples/MvcSample.Web/Startup.cs @@ -1,6 +1,6 @@ -using Microsoft.AspNet.Abstractions; +using Microsoft.AspNet; +using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Mvc; -using Microsoft.AspNet.RequestContainer; using Microsoft.AspNet.Routing; namespace MvcSample.Web diff --git a/src/Microsoft.AspNet.Mvc/BuilderExtensions.cs b/src/Microsoft.AspNet.Mvc/BuilderExtensions.cs index 383a996b5b..b95ddff1b0 100644 --- a/src/Microsoft.AspNet.Mvc/BuilderExtensions.cs +++ b/src/Microsoft.AspNet.Mvc/BuilderExtensions.cs @@ -1,10 +1,10 @@ using System; using System.Collections.Generic; using Microsoft.AspNet.Abstractions; +using Microsoft.AspNet.Mvc; using Microsoft.AspNet.Routing; - -namespace Microsoft.AspNet.Mvc +namespace Microsoft.AspNet { public static class BuilderExtensions {