diff --git a/src/Microsoft.AspNet.Session/DistributedSession.cs b/src/Microsoft.AspNet.Session/DistributedSession.cs index b08d09b6f9..0a28c18761 100644 --- a/src/Microsoft.AspNet.Session/DistributedSession.cs +++ b/src/Microsoft.AspNet.Session/DistributedSession.cs @@ -6,7 +6,7 @@ using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; -using Microsoft.AspNet.Http.Interfaces; +using Microsoft.AspNet.Http; using Microsoft.Framework.Cache.Distributed; using Microsoft.Framework.Logging; diff --git a/src/Microsoft.AspNet.Session/DistributedSessionStore.cs b/src/Microsoft.AspNet.Session/DistributedSessionStore.cs index 91b087a943..a401070a8c 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.Interfaces; +using Microsoft.AspNet.Http; using Microsoft.Framework.Cache.Distributed; using Microsoft.Framework.Logging; diff --git a/src/Microsoft.AspNet.Session/ISessionStore.cs b/src/Microsoft.AspNet.Session/ISessionStore.cs index 81cea1c04a..d1f69c3a6d 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.Interfaces; +using Microsoft.AspNet.Http; namespace Microsoft.AspNet.Session { diff --git a/src/Microsoft.AspNet.Session/SessionFactory.cs b/src/Microsoft.AspNet.Session/SessionFactory.cs index 3b9e6cc0ac..99bd37aaac 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.Interfaces; +using Microsoft.AspNet.Http; namespace Microsoft.AspNet.Session { diff --git a/src/Microsoft.AspNet.Session/SessionFeature.cs b/src/Microsoft.AspNet.Session/SessionFeature.cs index 3b78efb514..63e52087ba 100644 --- a/src/Microsoft.AspNet.Session/SessionFeature.cs +++ b/src/Microsoft.AspNet.Session/SessionFeature.cs @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Open Technologies, Inc. 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.Interfaces; +using Microsoft.AspNet.Http; namespace Microsoft.AspNet.Session { diff --git a/src/Microsoft.AspNet.Session/SessionMiddleware.cs b/src/Microsoft.AspNet.Session/SessionMiddleware.cs index 11c250cb7b..616f52fe47 100644 --- a/src/Microsoft.AspNet.Session/SessionMiddleware.cs +++ b/src/Microsoft.AspNet.Session/SessionMiddleware.cs @@ -8,7 +8,6 @@ using System.Security.Cryptography; using System.Threading.Tasks; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; -using Microsoft.AspNet.Http.Interfaces; using Microsoft.Framework.Logging; using Microsoft.Framework.OptionsModel; diff --git a/test/Microsoft.AspNet.Session.Tests/SessionTests.cs b/test/Microsoft.AspNet.Session.Tests/SessionTests.cs index 21440052f2..bb4d9447da 100644 --- a/test/Microsoft.AspNet.Session.Tests/SessionTests.cs +++ b/test/Microsoft.AspNet.Session.Tests/SessionTests.cs @@ -9,7 +9,7 @@ using System.Threading.Tasks; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; using Microsoft.AspNet.TestHost; -using Microsoft.AspNet.Testing.Logging; +using Microsoft.Framework.Logging.Testing; using Microsoft.Framework.DependencyInjection; using Microsoft.Framework.Logging; using Xunit; diff --git a/test/Microsoft.AspNet.Session.Tests/project.json b/test/Microsoft.AspNet.Session.Tests/project.json index 07c410374a..44053dc03b 100644 --- a/test/Microsoft.AspNet.Session.Tests/project.json +++ b/test/Microsoft.AspNet.Session.Tests/project.json @@ -3,7 +3,7 @@ "Microsoft.AspNet.Session": "1.0.0-*", "Microsoft.AspNet.RequestContainer": "1.0.0-*", "Microsoft.AspNet.TestHost": "1.0.0-*", - "Microsoft.AspNet.Testing.Logging": "1.0.0-*", + "Microsoft.Framework.Logging.Testing": "1.0.0-*", "xunit.runner.kre": "1.0.0-*" }, "commands": {