Handle HttpFeature rename

This commit is contained in:
Stephen Halter 2015-01-18 21:01:48 -08:00
parent 32ff0e14a1
commit 48e8f92aab
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System; using System;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
namespace Microsoft.AspNet.WebSockets.Server namespace Microsoft.AspNet.WebSockets.Server
{ {

View File

@ -8,7 +8,7 @@ using System.Net.WebSockets;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Builder; using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.WebSockets.Protocol; using Microsoft.AspNet.WebSockets.Protocol;
namespace Microsoft.AspNet.WebSockets.Server namespace Microsoft.AspNet.WebSockets.Server

View File

@ -3,7 +3,7 @@
"description": "ASP.NET 5 web socket middleware for use on top of opaque servers.", "description": "ASP.NET 5 web socket middleware for use on top of opaque servers.",
"dependencies": { "dependencies": {
"Microsoft.AspNet.Http": "1.0.0-*", "Microsoft.AspNet.Http": "1.0.0-*",
"Microsoft.AspNet.HttpFeature": { "version": "1.0.0-*", "type": "build" }, "Microsoft.AspNet.Http.Interfaces": { "version": "1.0.0-*", "type": "build" },
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*" "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*"
}, },
"frameworks": { "frameworks": {