From 7d52b3f76eb5434e2081951cf44eab078e3dfc51 Mon Sep 17 00:00:00 2001 From: Chris R Date: Thu, 7 May 2015 14:14:03 -0700 Subject: [PATCH] React to Http namespace changes. --- src/Microsoft.AspNet.Session/DistributedSession.cs | 1 + src/Microsoft.AspNet.Session/DistributedSessionStore.cs | 2 +- src/Microsoft.AspNet.Session/ISessionStore.cs | 2 +- src/Microsoft.AspNet.Session/SessionFactory.cs | 2 +- src/Microsoft.AspNet.Session/SessionFeature.cs | 2 +- src/Microsoft.AspNet.Session/SessionMiddleware.cs | 1 + 6 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Microsoft.AspNet.Session/DistributedSession.cs b/src/Microsoft.AspNet.Session/DistributedSession.cs index 123e1b4e66..0b0cf9462b 100644 --- a/src/Microsoft.AspNet.Session/DistributedSession.cs +++ b/src/Microsoft.AspNet.Session/DistributedSession.cs @@ -7,6 +7,7 @@ using System.IO; using System.Linq; using System.Text; using Microsoft.AspNet.Http; +using Microsoft.AspNet.Http.Features; using Microsoft.Framework.Caching.Distributed; using Microsoft.Framework.Internal; using Microsoft.Framework.Logging; diff --git a/src/Microsoft.AspNet.Session/DistributedSessionStore.cs b/src/Microsoft.AspNet.Session/DistributedSessionStore.cs index d3f3b84462..4391214c54 100644 --- a/src/Microsoft.AspNet.Session/DistributedSessionStore.cs +++ b/src/Microsoft.AspNet.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.AspNet.Http; +using Microsoft.AspNet.Http.Features; using Microsoft.Framework.Caching.Distributed; using Microsoft.Framework.Internal; using Microsoft.Framework.Logging; diff --git a/src/Microsoft.AspNet.Session/ISessionStore.cs b/src/Microsoft.AspNet.Session/ISessionStore.cs index 817cbbaf5b..14d22d9af7 100644 --- a/src/Microsoft.AspNet.Session/ISessionStore.cs +++ b/src/Microsoft.AspNet.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.AspNet.Http; +using Microsoft.AspNet.Http.Features; namespace Microsoft.AspNet.Session { diff --git a/src/Microsoft.AspNet.Session/SessionFactory.cs b/src/Microsoft.AspNet.Session/SessionFactory.cs index 7e727611b2..b643f7bac9 100644 --- a/src/Microsoft.AspNet.Session/SessionFactory.cs +++ b/src/Microsoft.AspNet.Session/SessionFactory.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.AspNet.Http; +using Microsoft.AspNet.Http.Features; using Microsoft.Framework.Internal; namespace Microsoft.AspNet.Session diff --git a/src/Microsoft.AspNet.Session/SessionFeature.cs b/src/Microsoft.AspNet.Session/SessionFeature.cs index fe35d697d5..9b8afa2e27 100644 --- a/src/Microsoft.AspNet.Session/SessionFeature.cs +++ b/src/Microsoft.AspNet.Session/SessionFeature.cs @@ -1,7 +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.AspNet.Http; +using Microsoft.AspNet.Http.Features; namespace Microsoft.AspNet.Session { diff --git a/src/Microsoft.AspNet.Session/SessionMiddleware.cs b/src/Microsoft.AspNet.Session/SessionMiddleware.cs index bab4c092ce..8a1756604d 100644 --- a/src/Microsoft.AspNet.Session/SessionMiddleware.cs +++ b/src/Microsoft.AspNet.Session/SessionMiddleware.cs @@ -8,6 +8,7 @@ using System.Security.Cryptography; using System.Threading.Tasks; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; +using Microsoft.AspNet.Http.Features; using Microsoft.Framework.Internal; using Microsoft.Framework.Logging; using Microsoft.Framework.OptionsModel;