From 5371e13a5a412afc64cdf4e7f52bef22f144f085 Mon Sep 17 00:00:00 2001 From: Doug Bunting Date: Sat, 19 Mar 2016 14:20:17 -0700 Subject: [PATCH] React to HttpAbstractions change: `ISession` in new namespace - see issue aspnet/HttpAbstractions#590 and pull aspnet/HttpAbstractions#589 --- src/Microsoft.AspNetCore.Session/DistributedSession.cs | 2 +- src/Microsoft.AspNetCore.Session/DistributedSessionStore.cs | 2 +- src/Microsoft.AspNetCore.Session/ISessionStore.cs | 2 +- src/Microsoft.AspNetCore.Session/SessionFeature.cs | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Microsoft.AspNetCore.Session/DistributedSession.cs b/src/Microsoft.AspNetCore.Session/DistributedSession.cs index e9ae5867e2..1a638ff926 100644 --- a/src/Microsoft.AspNetCore.Session/DistributedSession.cs +++ b/src/Microsoft.AspNetCore.Session/DistributedSession.cs @@ -8,7 +8,7 @@ using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; -using Microsoft.AspNetCore.Http.Features; +using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Caching.Distributed; using Microsoft.Extensions.Logging; diff --git a/src/Microsoft.AspNetCore.Session/DistributedSessionStore.cs b/src/Microsoft.AspNetCore.Session/DistributedSessionStore.cs index 41200e9d7e..da8f6cc867 100644 --- a/src/Microsoft.AspNetCore.Session/DistributedSessionStore.cs +++ b/src/Microsoft.AspNetCore.Session/DistributedSessionStore.cs @@ -2,7 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; -using Microsoft.AspNetCore.Http.Features; +using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Caching.Distributed; using Microsoft.Extensions.Logging; diff --git a/src/Microsoft.AspNetCore.Session/ISessionStore.cs b/src/Microsoft.AspNetCore.Session/ISessionStore.cs index 0b48648c8a..e62a0eb42c 100644 --- a/src/Microsoft.AspNetCore.Session/ISessionStore.cs +++ b/src/Microsoft.AspNetCore.Session/ISessionStore.cs @@ -2,7 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; -using Microsoft.AspNetCore.Http.Features; +using Microsoft.AspNetCore.Http; namespace Microsoft.AspNetCore.Session { diff --git a/src/Microsoft.AspNetCore.Session/SessionFeature.cs b/src/Microsoft.AspNetCore.Session/SessionFeature.cs index 9a46919896..44a378e614 100644 --- a/src/Microsoft.AspNetCore.Session/SessionFeature.cs +++ b/src/Microsoft.AspNetCore.Session/SessionFeature.cs @@ -1,6 +1,7 @@ // Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http.Features; namespace Microsoft.AspNetCore.Session