Handle HttpFeature rename

This commit is contained in:
Stephen Halter 2015-01-18 20:50:01 -08:00
parent 9746a67990
commit bf9d22bb89
4 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ using System.Threading.Tasks;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Core;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;
namespace Microsoft.AspNet.TestHost
{

View File

@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;
namespace Microsoft.AspNet.TestHost
{

View File

@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;
namespace Microsoft.AspNet.TestHost
{

View File

@ -10,7 +10,7 @@ using System.Threading.Tasks;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Core;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;
using Xunit;
namespace Microsoft.AspNet.TestHost