Change namespace to Microsoft.AspNetCore.Http.Endpoints (#1061)

This commit is contained in:
James Newton-King 2018-11-08 15:52:01 +13:00 committed by GitHub
parent 066c5ce337
commit 1d3521113a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 2 deletions

View File

@ -4,7 +4,7 @@
using System;
using Microsoft.AspNetCore.Http.Features;
namespace Microsoft.AspNetCore.Http
namespace Microsoft.AspNetCore.Http.Endpoints
{
/// <summary>
/// Extension methods to expose Endpoint on HttpContext.

View File

@ -6,6 +6,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Endpoints;
using Microsoft.AspNetCore.Http.Features;
using Microsoft.AspNetCore.Http.Internal;
using Microsoft.Extensions.Internal;

View File

@ -5,6 +5,7 @@ using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http.Endpoints;
using Microsoft.AspNetCore.Http.Features;
using Xunit;

View File

@ -3,7 +3,7 @@
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Features;
using Microsoft.AspNetCore.Http.Endpoints;
using Xunit;
namespace Microsoft.AspNetCore.Builder.Internal