Move BuilderExtensions and RouterMiddleware to Microsoft.AspNet

This commit is contained in:
David Fowler 2014-04-18 00:22:27 -07:00
parent 06c63c38a1
commit f86877b14f
3 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,5 @@
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using Microsoft.AspNet;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Routing; using Microsoft.AspNet.Routing;

View File

@ -1,8 +1,9 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Routing; using Microsoft.AspNet.Routing;
namespace Microsoft.AspNet.Abstractions namespace Microsoft.AspNet
{ {
public static class BuilderExtensions public static class BuilderExtensions
{ {

View File

@ -1,9 +1,10 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Routing; using Microsoft.AspNet.Routing;
namespace Microsoft.AspNet.Abstractions namespace Microsoft.AspNet
{ {
public class RouterMiddleware public class RouterMiddleware
{ {