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

Commit 16a0482

Browse files
committed
React to HttpAbstractions namespace changes
- aspnet/HttpAbstractions#549 and aspnet/HttpAbstractions#592 - clean up `using`s
1 parent babd83c commit 16a0482

File tree

6 files changed

+1
-10
lines changed

6 files changed

+1
-10
lines changed

src/Microsoft.AspNetCore.Authentication.Twitter/TwitterHandler.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
using Microsoft.AspNetCore.Http;
1414
using Microsoft.AspNetCore.Http.Authentication;
1515
using Microsoft.AspNetCore.Http.Features.Authentication;
16-
using Microsoft.AspNetCore.Http.Internal;
1716
using Microsoft.AspNetCore.WebUtilities;
1817
using Microsoft.Extensions.Logging;
1918
using Microsoft.Extensions.Primitives;

src/Microsoft.AspNetCore.Authentication/HttpContextExtensions.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using Microsoft.AspNetCore.Http;
5-
using Microsoft.AspNetCore.Http.Features;
65
using Microsoft.AspNetCore.Http.Features.Authentication;
7-
using Microsoft.AspNetCore.Http.Features.Authentication.Internal;
86

97
namespace Microsoft.AspNetCore.Authentication
108
{

src/Microsoft.AspNetCore.CookiePolicy/CookiePolicyMiddleware.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
using Microsoft.AspNetCore.Builder;
77
using Microsoft.AspNetCore.Http;
88
using Microsoft.AspNetCore.Http.Features;
9-
using Microsoft.AspNetCore.Http.Features.Internal;
109
using Microsoft.Extensions.Options;
1110

1211
namespace Microsoft.AspNetCore.CookiePolicy

test/Microsoft.AspNetCore.Authentication.Test/AuthenticationHandlerFacts.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
using Microsoft.AspNetCore.Http.Authentication;
1212
using Microsoft.AspNetCore.Http.Features;
1313
using Microsoft.AspNetCore.Http.Features.Authentication;
14-
using Microsoft.AspNetCore.Http.Internal;
1514
using Microsoft.Extensions.Logging;
1615
using Xunit;
1716

test/Microsoft.AspNetCore.Authentication.Test/Cookies/Infrastructure/CookieChunkingTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5-
using System.Collections.Generic;
65
using Microsoft.AspNetCore.Http;
7-
using Microsoft.AspNetCore.Http.Internal;
86
using Xunit;
97

108
namespace Microsoft.AspNetCore.Authentication.Cookies.Infrastructure

test/Microsoft.AspNetCore.Authentication.Test/TokenExtensionTests.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using System.Diagnostics;
76
using System.Linq;
87
using System.Security.Claims;
98
using System.Threading.Tasks;
9+
using Microsoft.AspNetCore.Http;
1010
using Microsoft.AspNetCore.Http.Authentication;
1111
using Microsoft.AspNetCore.Http.Features.Authentication;
12-
using Microsoft.AspNetCore.Http.Features.Authentication.Internal;
13-
using Microsoft.AspNetCore.Http.Internal;
1412
using Xunit;
1513

1614
namespace Microsoft.AspNetCore.Authentication

0 commit comments

Comments
 (0)