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

Commit 7e32cf4

Browse files
committed
React to HttpAbstractions change: ISession in new namespace
- see issue aspnet/HttpAbstractions#590 and pull aspnet/HttpAbstractions#589
1 parent 396bef4 commit 7e32cf4

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

src/Microsoft.AspNetCore.Session/DistributedSession.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Security.Cryptography;
99
using System.Text;
1010
using System.Threading.Tasks;
11-
using Microsoft.AspNetCore.Http.Features;
11+
using Microsoft.AspNetCore.Http;
1212
using Microsoft.Extensions.Caching.Distributed;
1313
using Microsoft.Extensions.Logging;
1414

src/Microsoft.AspNetCore.Session/DistributedSessionStore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +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 Microsoft.AspNetCore.Http.Features;
5+
using Microsoft.AspNetCore.Http;
66
using Microsoft.Extensions.Caching.Distributed;
77
using Microsoft.Extensions.Logging;
88

src/Microsoft.AspNetCore.Session/ISessionStore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +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 Microsoft.AspNetCore.Http.Features;
5+
using Microsoft.AspNetCore.Http;
66

77
namespace Microsoft.AspNetCore.Session
88
{

src/Microsoft.AspNetCore.Session/SessionFeature.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4+
using Microsoft.AspNetCore.Http;
45
using Microsoft.AspNetCore.Http.Features;
56

67
namespace Microsoft.AspNetCore.Session

0 commit comments

Comments
 (0)