From 3d62de4fe6064b5eecb59db5264b70c895bb4123 Mon Sep 17 00:00:00 2001 From: Chris R Date: Tue, 3 Jan 2017 18:58:44 -0800 Subject: [PATCH] React to WebListener rename --- test/AutobahnTestApp/Program.cs | 4 ++-- test/AutobahnTestApp/Properties/launchSettings.json | 2 +- test/AutobahnTestApp/project.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/AutobahnTestApp/Program.cs b/test/AutobahnTestApp/Program.cs index 04098c88ab..65d165166d 100644 --- a/test/AutobahnTestApp/Program.cs +++ b/test/AutobahnTestApp/Program.cs @@ -19,9 +19,9 @@ namespace AutobahnTestApp .UseIISIntegration() .UseStartup(); - if (string.Equals(builder.GetSetting("server"), "Microsoft.AspNetCore.Server.WebListener", System.StringComparison.Ordinal)) + if (string.Equals(builder.GetSetting("server"), "Microsoft.AspNetCore.Server.HttpSys", System.StringComparison.Ordinal)) { - builder.UseWebListener(); + builder.UseHttpSys(); } else { diff --git a/test/AutobahnTestApp/Properties/launchSettings.json b/test/AutobahnTestApp/Properties/launchSettings.json index c96436ad2a..85a2609ccc 100644 --- a/test/AutobahnTestApp/Properties/launchSettings.json +++ b/test/AutobahnTestApp/Properties/launchSettings.json @@ -33,7 +33,7 @@ }, "WebListener": { "commandName": "Project", - "commandLineArgs": "--server Microsoft.AspNetCore.Server.WebListener", + "commandLineArgs": "--server Microsoft.AspNetCore.Server.HttpSys", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "ManagedSockets" } diff --git a/test/AutobahnTestApp/project.json b/test/AutobahnTestApp/project.json index 9bee581ada..2b51644993 100644 --- a/test/AutobahnTestApp/project.json +++ b/test/AutobahnTestApp/project.json @@ -2,10 +2,10 @@ "dependencies": { "Microsoft.AspNetCore.AspNetCoreModule": "1.0.0-*", "Microsoft.AspNetCore.Diagnostics": "1.2.0-*", + "Microsoft.AspNetCore.Server.HttpSys": "1.2.0-*", "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", "Microsoft.AspNetCore.Server.Kestrel.Https": "1.2.0-*", - "Microsoft.AspNetCore.Server.WebListener": "1.2.0-*", "Microsoft.AspNetCore.WebSockets": "1.1.0-*", "Microsoft.Extensions.Configuration.CommandLine": "1.2.0-*", "Microsoft.Extensions.Logging.Console": "1.2.0-*",