From 52e5ccdac7a2220273139bdc68cafdf5f27ee42d Mon Sep 17 00:00:00 2001 From: Doug Bunting Date: Sun, 27 Mar 2016 13:10:55 -0700 Subject: [PATCH] React to HttpAbstractions namespace changes - aspnet/HttpAbstractions#549 and aspnet/HttpAbstractions#592 - clean up `using`s --- .../IISPlatformHandlerMiddleware.cs | 1 - .../IISMiddleware.cs | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Microsoft.AspNetCore.IISPlatformHandler/IISPlatformHandlerMiddleware.cs b/src/Microsoft.AspNetCore.IISPlatformHandler/IISPlatformHandlerMiddleware.cs index 94fb121b98..93ad92a4df 100644 --- a/src/Microsoft.AspNetCore.IISPlatformHandler/IISPlatformHandlerMiddleware.cs +++ b/src/Microsoft.AspNetCore.IISPlatformHandler/IISPlatformHandlerMiddleware.cs @@ -9,7 +9,6 @@ using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http.Features; using Microsoft.AspNetCore.Http.Features.Authentication; -using Microsoft.AspNetCore.Http.Features.Authentication.Internal; using Microsoft.Extensions.Internal; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; diff --git a/src/Microsoft.AspNetCore.Server.IISIntegration/IISMiddleware.cs b/src/Microsoft.AspNetCore.Server.IISIntegration/IISMiddleware.cs index 65564bc8ae..bcf88de15e 100644 --- a/src/Microsoft.AspNetCore.Server.IISIntegration/IISMiddleware.cs +++ b/src/Microsoft.AspNetCore.Server.IISIntegration/IISMiddleware.cs @@ -9,7 +9,6 @@ using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http.Features; using Microsoft.AspNetCore.Http.Features.Authentication; -using Microsoft.AspNetCore.Http.Features.Authentication.Internal; using Microsoft.Extensions.Internal; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; @@ -60,7 +59,7 @@ namespace Microsoft.AspNetCore.Server.IISIntegration _logger.LogTrace($"'{MSAspNetCoreToken}' does not match the expected pairing token '{_pairingToken}', skipping {nameof(IISMiddleware)}."); await _next(httpContext); return; - } + } if (_options.ForwardClientCertificate) {