From c80946260a17f5ad046dc77728f5c291ddc235d4 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Fri, 30 Oct 2015 00:13:10 -0700 Subject: [PATCH] Change the namespace of RequestDelegate - change it to Microsoft.AspNet.Http --- .../Extensions/RunExtensions.cs | 1 + src/Microsoft.AspNet.Http.Abstractions/IApplicationBuilder.cs | 1 + src/Microsoft.AspNet.Http.Abstractions/RequestDelegate.cs | 3 +-- src/Microsoft.AspNet.Http/ApplicationBuilder.cs | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNet.Http.Abstractions/Extensions/RunExtensions.cs b/src/Microsoft.AspNet.Http.Abstractions/Extensions/RunExtensions.cs index 8280b285..42c99925 100644 --- a/src/Microsoft.AspNet.Http.Abstractions/Extensions/RunExtensions.cs +++ b/src/Microsoft.AspNet.Http.Abstractions/Extensions/RunExtensions.cs @@ -2,6 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; +using Microsoft.AspNet.Http; namespace Microsoft.AspNet.Builder { diff --git a/src/Microsoft.AspNet.Http.Abstractions/IApplicationBuilder.cs b/src/Microsoft.AspNet.Http.Abstractions/IApplicationBuilder.cs index 342b7b4f..be0faecb 100644 --- a/src/Microsoft.AspNet.Http.Abstractions/IApplicationBuilder.cs +++ b/src/Microsoft.AspNet.Http.Abstractions/IApplicationBuilder.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; +using Microsoft.AspNet.Http; using Microsoft.AspNet.Http.Features; namespace Microsoft.AspNet.Builder diff --git a/src/Microsoft.AspNet.Http.Abstractions/RequestDelegate.cs b/src/Microsoft.AspNet.Http.Abstractions/RequestDelegate.cs index 87d215ad..b34b6ed8 100644 --- a/src/Microsoft.AspNet.Http.Abstractions/RequestDelegate.cs +++ b/src/Microsoft.AspNet.Http.Abstractions/RequestDelegate.cs @@ -2,9 +2,8 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; -using Microsoft.AspNet.Http; -namespace Microsoft.AspNet.Builder +namespace Microsoft.AspNet.Http { /// /// A function that can process an HTTP request. diff --git a/src/Microsoft.AspNet.Http/ApplicationBuilder.cs b/src/Microsoft.AspNet.Http/ApplicationBuilder.cs index 49ed18f3..e6164af5 100644 --- a/src/Microsoft.AspNet.Http/ApplicationBuilder.cs +++ b/src/Microsoft.AspNet.Http/ApplicationBuilder.cs @@ -5,6 +5,7 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; +using Microsoft.AspNet.Http; using Microsoft.AspNet.Http.Features; using Microsoft.AspNet.Http.Internal;