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

Commit 1820edb

Browse files
committed
Handle HttpFeature rename
1 parent 19ccebb commit 1820edb

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/Microsoft.AspNet.StaticFiles/SendFileMiddleware.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Threading.Tasks;
88
using Microsoft.AspNet.Builder;
99
using Microsoft.AspNet.Http;
10-
using Microsoft.AspNet.HttpFeature;
10+
using Microsoft.AspNet.Http.Interfaces;
1111
using Microsoft.Framework.Logging;
1212

1313
namespace Microsoft.AspNet.StaticFiles

src/Microsoft.AspNet.StaticFiles/SendFileResponseExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading;
66
using System.Threading.Tasks;
77
using Microsoft.AspNet.Http;
8-
using Microsoft.AspNet.HttpFeature;
8+
using Microsoft.AspNet.Http.Interfaces;
99

1010
namespace Microsoft.AspNet.StaticFiles
1111
{

src/Microsoft.AspNet.StaticFiles/StaticFileContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using Microsoft.AspNet.FileSystems;
1111
using Microsoft.AspNet.Http;
1212
using Microsoft.AspNet.Http.Headers;
13-
using Microsoft.AspNet.HttpFeature;
13+
using Microsoft.AspNet.Http.Interfaces;
1414
using Microsoft.AspNet.StaticFiles.Infrastructure;
1515
using Microsoft.Framework.Logging;
1616
using Microsoft.Net.Http.Headers;

src/Microsoft.AspNet.StaticFiles/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"dependencies": {
55
"Microsoft.AspNet.Hosting": { "version": "1.0.0-*", "type": "build" },
66
"Microsoft.AspNet.Http.Extensions": "1.0.0-*",
7-
"Microsoft.AspNet.HttpFeature": { "version": "1.0.0-*", "type": "build" }
7+
"Microsoft.AspNet.Http.Interfaces": { "version": "1.0.0-*", "type": "build" }
88
},
99
"frameworks": {
1010
"aspnet50": { },

test/Microsoft.AspNet.StaticFiles.Tests/SendFileResponseExtensionsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Threading;
55
using System.Threading.Tasks;
66
using Microsoft.AspNet.Http.Core;
7-
using Microsoft.AspNet.HttpFeature;
7+
using Microsoft.AspNet.Http.Interfaces;
88
using Xunit;
99

1010
namespace Microsoft.AspNet.StaticFiles

0 commit comments

Comments
 (0)