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

Commit d34554e

Browse files
committed
Handle HttpFeature rename
1 parent 0c5a702 commit d34554e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Microsoft.AspNet.Mvc.Core/ActionResults/FilePathResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Microsoft.AspNet.FileSystems;
99
using Microsoft.AspNet.Hosting;
1010
using Microsoft.AspNet.Http;
11-
using Microsoft.AspNet.HttpFeature;
11+
using Microsoft.AspNet.Http.Interfaces;
1212
using Microsoft.AspNet.Mvc.Core;
1313
using Microsoft.Framework.DependencyInjection;
1414

src/Microsoft.AspNet.Mvc.WebApiCompatShim/Formatters/HttpResponseMessageOutputFormatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Linq;
77
using System.Net.Http;
88
using System.Threading.Tasks;
9-
using Microsoft.AspNet.HttpFeature;
9+
using Microsoft.AspNet.Http.Interfaces;
1010
using Microsoft.Net.Http.Headers;
1111

1212
namespace Microsoft.AspNet.Mvc.WebApiCompatShim

test/Microsoft.AspNet.Mvc.Core.Test/ActionResults/FilePathResultTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Microsoft.AspNet.FileSystems;
88
using Microsoft.AspNet.Hosting;
99
using Microsoft.AspNet.Http.Core;
10-
using Microsoft.AspNet.HttpFeature;
10+
using Microsoft.AspNet.Http.Interfaces;
1111
using Microsoft.AspNet.Routing;
1212
using Microsoft.Framework.DependencyInjection;
1313
using Microsoft.Framework.DependencyInjection.Fallback;

test/WebSites/FilesWebSite/SendFileMiddleware.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Threading.Tasks;
77
using Microsoft.AspNet.Builder;
88
using Microsoft.AspNet.Http;
9-
using Microsoft.AspNet.HttpFeature;
9+
using Microsoft.AspNet.Http.Interfaces;
1010
using Microsoft.Framework.Runtime;
1111

1212
namespace FilesWebSite

0 commit comments

Comments
 (0)