Skip to content
This repository was archived by the owner on Mar 19, 2019. It is now read-only.

Commit 9fdeb09

Browse files
committed
React to FeatureModel package change.
1 parent 516bc4e commit 9fdeb09

16 files changed

+8
-16
lines changed

src/Microsoft.AspNet.Server.WebListener/FeatureContext.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
using System.Security.Cryptography.X509Certificates;
2525
using System.Threading;
2626
using System.Threading.Tasks;
27-
using Microsoft.AspNet.FeatureModel;
2827
using Microsoft.AspNet.Http.Features;
2928
using Microsoft.AspNet.Http.Features.Authentication;
3029
using Microsoft.Net.Http.Headers;

src/Microsoft.AspNet.Server.WebListener/MessagePump.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
using System.Diagnostics.Contracts;
2020
using System.Threading;
2121
using System.Threading.Tasks;
22-
using Microsoft.AspNet.FeatureModel;
22+
using Microsoft.AspNet.Http.Features;
2323
using Microsoft.Framework.Logging;
2424
using Microsoft.Net.Http.Server;
2525

src/Microsoft.AspNet.Server.WebListener/ServerFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
using System;
3838
using System.Diagnostics.CodeAnalysis;
3939
using System.Threading.Tasks;
40-
using Microsoft.AspNet.FeatureModel;
4140
using Microsoft.AspNet.Hosting.Server;
41+
using Microsoft.AspNet.Http.Features;
4242
using Microsoft.Framework.Configuration;
4343
using Microsoft.Framework.Logging;
4444
using Microsoft.Net.Http.Server;

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/AuthenticationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
using System.Net;
2121
using System.Net.Http;
2222
using System.Threading.Tasks;
23-
using Microsoft.AspNet.FeatureModel;
23+
using Microsoft.AspNet.Http.Features;
2424
using Microsoft.AspNet.Http.Features.Authentication;
2525
using Microsoft.AspNet.Http.Internal;
2626
using Xunit;

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/HttpsTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
using System.Text;
2222
using System.Threading;
2323
using System.Threading.Tasks;
24-
using Microsoft.AspNet.FeatureModel;
2524
using Microsoft.AspNet.Http.Features;
2625
using Microsoft.AspNet.Http.Internal;
2726
using Xunit;

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/OpaqueUpgradeTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
using System.Text;
2323
using System.Threading;
2424
using System.Threading.Tasks;
25-
using Microsoft.AspNet.FeatureModel;
2625
using Microsoft.AspNet.Http;
2726
using Microsoft.AspNet.Http.Features;
2827
using Microsoft.AspNet.Http.Internal;

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/RequestBodyTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
using System.Text;
2424
using System.Threading;
2525
using System.Threading.Tasks;
26-
using Microsoft.AspNet.FeatureModel;
26+
using Microsoft.AspNet.Http.Features;
2727
using Microsoft.AspNet.Http.Internal;
2828
using Xunit;
2929

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/RequestHeaderTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
using System.Net.Sockets;
2121
using System.Text;
2222
using System.Threading.Tasks;
23-
using Microsoft.AspNet.FeatureModel;
23+
using Microsoft.AspNet.Http.Features;
2424
using Microsoft.AspNet.Http.Internal;
2525
using Xunit;
2626

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/RequestTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
using System.Net.Http;
2121
using System.Text;
2222
using System.Threading.Tasks;
23-
using Microsoft.AspNet.FeatureModel;
2423
using Microsoft.AspNet.Http.Features;
2524
using Microsoft.AspNet.Http.Internal;
2625
using Microsoft.Net.Http.Server;

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/ResponseBodyTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
using System.Text;
2424
using System.Threading;
2525
using System.Threading.Tasks;
26-
using Microsoft.AspNet.FeatureModel;
26+
using Microsoft.AspNet.Http.Features;
2727
using Microsoft.AspNet.Http.Internal;
2828
using Xunit;
2929

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/ResponseCachingTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Linq;
55
using System.Net.Http;
66
using System.Threading.Tasks;
7-
using Microsoft.AspNet.FeatureModel;
7+
using Microsoft.AspNet.Http.Features;
88
using Microsoft.AspNet.Http.Internal;
99
using Xunit;
1010

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/ResponseHeaderTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
using System.Net.Http;
2323
using System.Text;
2424
using System.Threading.Tasks;
25-
using Microsoft.AspNet.FeatureModel;
2625
using Microsoft.AspNet.Http.Features;
2726
using Microsoft.AspNet.Http.Internal;
2827
using Xunit;

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/ResponseSendFileTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
using System.Text;
2525
using System.Threading;
2626
using System.Threading.Tasks;
27-
using Microsoft.AspNet.FeatureModel;
2827
using Microsoft.AspNet.Http.Features;
2928
using Microsoft.AspNet.Http.Internal;
3029
using Xunit;

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/ResponseTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
using System.Net;
2020
using System.Net.Http;
2121
using System.Threading.Tasks;
22-
using Microsoft.AspNet.FeatureModel;
2322
using Microsoft.AspNet.Http.Features;
2423
using Microsoft.AspNet.Http.Internal;
2524
using Xunit;

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/ServerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
using System.Text;
2525
using System.Threading;
2626
using System.Threading.Tasks;
27-
using Microsoft.AspNet.FeatureModel;
2827
using Microsoft.AspNet.Http;
28+
using Microsoft.AspNet.Http.Features;
2929
using Microsoft.AspNet.Http.Internal;
3030
using Microsoft.Net.Http.Server;
3131
using Xunit;

test/Microsoft.AspNet.Server.WebListener.FunctionalTests/WebSocketTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
using System.Net.WebSockets;
2121
using System.Threading;
2222
using System.Threading.Tasks;
23-
using Microsoft.AspNet.FeatureModel;
2423
using Microsoft.AspNet.Http;
2524
using Microsoft.AspNet.Http.Features;
2625
using Microsoft.AspNet.Http.Internal;

0 commit comments

Comments
 (0)