Skip to content
This repository was archived by the owner on Dec 18, 2018. It is now read-only.

Commit c3e57ab

Browse files
committed
reacting to HttpAbstractions/pull/455 and PR comments
1 parent 5d36c67 commit c3e57ab

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

src/Microsoft.AspNet.Server.Kestrel/Http/ListenerContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using Microsoft.AspNet.Builder;
4+
using Microsoft.AspNet.Http;
55
using Microsoft.AspNet.Server.Kestrel.Infrastructure;
66

77
namespace Microsoft.AspNet.Server.Kestrel.Http

src/Microsoft.AspNet.Server.Kestrel/Http/ListenerPrimary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66
using System.Threading.Tasks;
7-
using Microsoft.AspNet.Builder;
7+
using Microsoft.AspNet.Http;
88
using Microsoft.AspNet.Server.Kestrel.Infrastructure;
99
using Microsoft.AspNet.Server.Kestrel.Networking;
1010
using Microsoft.Extensions.Logging;

src/Microsoft.AspNet.Server.Kestrel/Http/ListenerSecondary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Runtime.InteropServices;
66
using System.Threading.Tasks;
7-
using Microsoft.AspNet.Builder;
7+
using Microsoft.AspNet.Http;
88
using Microsoft.AspNet.Server.Kestrel.Infrastructure;
99
using Microsoft.AspNet.Server.Kestrel.Networking;
1010
using Microsoft.Extensions.Logging;

src/Microsoft.AspNet.Server.Kestrel/KestrelEngine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using Microsoft.AspNet.Builder;
6+
using Microsoft.AspNet.Http;
77
using Microsoft.AspNet.Server.Kestrel.Http;
88
using Microsoft.AspNet.Server.Kestrel.Networking;
99

src/Microsoft.AspNet.Server.Kestrel/KestrelServer.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using Microsoft.AspNet.Builder;
76
using Microsoft.AspNet.Hosting;
87
using Microsoft.AspNet.Hosting.Server;
98
using Microsoft.AspNet.Http;
@@ -13,7 +12,7 @@
1312

1413
namespace Microsoft.AspNet.Server.Kestrel
1514
{
16-
internal class KestrelServer : IServer
15+
public class KestrelServer : IServer
1716
{
1817
private Stack<IDisposable> _disposables;
1918
private readonly IApplicationLifetime _applicationLifetime;

test/Microsoft.AspNet.Server.KestrelTests/TestServer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5-
using Microsoft.AspNet.Builder;
5+
using Microsoft.AspNet.Http;
66
using Microsoft.AspNet.Server.Kestrel;
77

88
namespace Microsoft.AspNet.Server.KestrelTests

0 commit comments

Comments
 (0)