From 688730f1f6783822c068648f6c137aad03ece0c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Fri, 1 Apr 2016 17:23:51 +0200 Subject: [PATCH] React to API changes in aspnet/KestrelHttpServer https://github.com/aspnet/KestrelHttpServer/commit/088b7e5779f9171ce46352d24320bcdf0ba03be5 --- samples/Mvc.Client/Program.cs | 2 +- samples/Mvc.Server/Program.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/Mvc.Client/Program.cs b/samples/Mvc.Client/Program.cs index fe8a48b2..028c4238 100644 --- a/samples/Mvc.Client/Program.cs +++ b/samples/Mvc.Client/Program.cs @@ -9,7 +9,7 @@ namespace Mvc.Client { .ConfigureLogging(options => options.AddDebug()) .UseDefaultHostingConfiguration(args) .UseIISPlatformHandlerUrl() - .UseServer("Microsoft.AspNetCore.Server.Kestrel") + .UseKestrel() .UseStartup() .Build(); diff --git a/samples/Mvc.Server/Program.cs b/samples/Mvc.Server/Program.cs index ea8f1a85..7b0b761a 100644 --- a/samples/Mvc.Server/Program.cs +++ b/samples/Mvc.Server/Program.cs @@ -9,7 +9,7 @@ namespace Mvc.Server { .ConfigureLogging(options => options.AddDebug()) .UseDefaultHostingConfiguration(args) .UseIISPlatformHandlerUrl() - .UseServer("Microsoft.AspNetCore.Server.Kestrel") + .UseKestrel() .UseStartup() .Build();