From 9bcc8633219c3a77b0c6a38bf951b82724fc094b Mon Sep 17 00:00:00 2001 From: Praburaj Date: Thu, 5 Mar 2015 16:36:21 -0800 Subject: [PATCH] Rename Microsoft.AspNet.Http.Interfaces => Microsoft.AspNet.Http --- .../WebSocketAcceptContext.cs | 2 +- src/Microsoft.AspNet.WebSockets.Server/WebSocketMiddleware.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Microsoft.AspNet.WebSockets.Server/WebSocketAcceptContext.cs b/src/Microsoft.AspNet.WebSockets.Server/WebSocketAcceptContext.cs index c8f09dd34f..d1227d41bd 100644 --- a/src/Microsoft.AspNet.WebSockets.Server/WebSocketAcceptContext.cs +++ b/src/Microsoft.AspNet.WebSockets.Server/WebSocketAcceptContext.cs @@ -2,7 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; -using Microsoft.AspNet.Http.Interfaces; +using Microsoft.AspNet.Http; namespace Microsoft.AspNet.WebSockets.Server { diff --git a/src/Microsoft.AspNet.WebSockets.Server/WebSocketMiddleware.cs b/src/Microsoft.AspNet.WebSockets.Server/WebSocketMiddleware.cs index 30ac76d09f..d03a183a72 100644 --- a/src/Microsoft.AspNet.WebSockets.Server/WebSocketMiddleware.cs +++ b/src/Microsoft.AspNet.WebSockets.Server/WebSocketMiddleware.cs @@ -8,7 +8,6 @@ using System.Net.WebSockets; using System.Threading.Tasks; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; -using Microsoft.AspNet.Http.Interfaces; using Microsoft.AspNet.WebSockets.Protocol; namespace Microsoft.AspNet.WebSockets.Server