From c08e850665cdefecac6ffa5273f8a05154f9393d Mon Sep 17 00:00:00 2001 From: John Luo Date: Wed, 30 Mar 2016 16:37:34 -0700 Subject: [PATCH] Reacting to Kestrel extensions --- samples/IdentitySample.Mvc/Startup.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/samples/IdentitySample.Mvc/Startup.cs b/samples/IdentitySample.Mvc/Startup.cs index e60238d75a..4b07cf81be 100644 --- a/samples/IdentitySample.Mvc/Startup.cs +++ b/samples/IdentitySample.Mvc/Startup.cs @@ -120,7 +120,7 @@ namespace IdentitySample { var host = new WebHostBuilder() .UseDefaultHostingConfiguration(args) - .UseServer("Microsoft.AspNetCore.Server.Kestrel") + .UseKestrel() .UseStartup() .Build(); @@ -128,3 +128,4 @@ namespace IdentitySample } } } +