Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit 1d35211

Browse files
authored
Change namespace to Microsoft.AspNetCore.Http.Endpoints (#1061)
1 parent 066c5ce commit 1d35211

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

src/Microsoft.AspNetCore.Http.Abstractions/Routing/EndpointHttpContextExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using Microsoft.AspNetCore.Http.Features;
66

7-
namespace Microsoft.AspNetCore.Http
7+
namespace Microsoft.AspNetCore.Http.Endpoints
88
{
99
/// <summary>
1010
/// Extension methods to expose Endpoint on HttpContext.

src/Microsoft.AspNetCore.Http/Internal/ApplicationBuilder.cs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using System.Linq;
77
using System.Threading.Tasks;
88
using Microsoft.AspNetCore.Http;
9+
using Microsoft.AspNetCore.Http.Endpoints;
910
using Microsoft.AspNetCore.Http.Features;
1011
using Microsoft.AspNetCore.Http.Internal;
1112
using Microsoft.Extensions.Internal;

test/Microsoft.AspNetCore.Http.Abstractions.Tests/EndpointHttpContextExtensionsTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using System.Collections.Generic;
66
using System.Text;
77
using System.Threading.Tasks;
8+
using Microsoft.AspNetCore.Http.Endpoints;
89
using Microsoft.AspNetCore.Http.Features;
910
using Xunit;
1011

test/Microsoft.AspNetCore.Http.Tests/Internal/ApplicationBuilderTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System.Threading.Tasks;
55
using Microsoft.AspNetCore.Http;
6-
using Microsoft.AspNetCore.Http.Features;
6+
using Microsoft.AspNetCore.Http.Endpoints;
77
using Xunit;
88

99
namespace Microsoft.AspNetCore.Builder.Internal

0 commit comments

Comments
 (0)