Handle HttpFeature rename

This commit is contained in:
Stephen Halter 2015-01-18 20:58:52 -08:00
parent 19ccebb4ce
commit 1820edb326
5 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@ using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;
using Microsoft.Framework.Logging;
namespace Microsoft.AspNet.StaticFiles

View File

@ -5,7 +5,7 @@ using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;
namespace Microsoft.AspNet.StaticFiles
{

View File

@ -10,7 +10,7 @@ using System.Threading.Tasks;
using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Headers;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.StaticFiles.Infrastructure;
using Microsoft.Framework.Logging;
using Microsoft.Net.Http.Headers;

View File

@ -4,7 +4,7 @@
"dependencies": {
"Microsoft.AspNet.Hosting": { "version": "1.0.0-*", "type": "build" },
"Microsoft.AspNet.Http.Extensions": "1.0.0-*",
"Microsoft.AspNet.HttpFeature": { "version": "1.0.0-*", "type": "build" }
"Microsoft.AspNet.Http.Interfaces": { "version": "1.0.0-*", "type": "build" }
},
"frameworks": {
"aspnet50": { },

View File

@ -4,7 +4,7 @@ using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNet.Http.Core;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;
using Xunit;
namespace Microsoft.AspNet.StaticFiles