diff --git a/samples/SelfHostServer/Startup.cs b/samples/SelfHostServer/Startup.cs index ed6028e5bc..c34e761ca7 100644 --- a/samples/SelfHostServer/Startup.cs +++ b/samples/SelfHostServer/Startup.cs @@ -16,7 +16,7 @@ // permissions and limitations under the License. using Microsoft.AspNet; -using Microsoft.AspNet.Abstractions; +using Microsoft.AspNet.Http; using Microsoft.AspNet.Server.WebListener; using Microsoft.Net.Server; diff --git a/src/Microsoft.AspNet.Server.WebListener/ServerFactory.cs b/src/Microsoft.AspNet.Server.WebListener/ServerFactory.cs index c224e669f6..22a328883a 100644 --- a/src/Microsoft.AspNet.Server.WebListener/ServerFactory.cs +++ b/src/Microsoft.AspNet.Server.WebListener/ServerFactory.cs @@ -38,7 +38,7 @@ using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Threading.Tasks; -using Microsoft.AspNet.Abstractions; +using Microsoft.AspNet.Http; using Microsoft.AspNet.ConfigurationModel; using Microsoft.AspNet.Hosting.Server; using Microsoft.AspNet.Logging; diff --git a/src/Microsoft.AspNet.Server.WebListener/ServerInformation.cs b/src/Microsoft.AspNet.Server.WebListener/ServerInformation.cs index 9f0519042e..3576acae05 100644 --- a/src/Microsoft.AspNet.Server.WebListener/ServerInformation.cs +++ b/src/Microsoft.AspNet.Server.WebListener/ServerInformation.cs @@ -16,7 +16,7 @@ // permissions and limitations under the License. using System.Reflection; -using Microsoft.AspNet.Abstractions; +using Microsoft.AspNet.Http; namespace Microsoft.AspNet.Server.WebListener {