Moved BuilderExtensions to Microsoft.AspNet namespace

This commit is contained in:
David Fowler 2014-04-18 00:51:27 -07:00
parent 73b7509368
commit 05a2319d84
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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
{