From e5b807e4d229301fedd65530934c93a4ca91b4dc Mon Sep 17 00:00:00 2001 From: Chris R Date: Thu, 7 Apr 2016 11:49:12 -0700 Subject: [PATCH] React to UseIIS rename. --- src/MusicStore/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MusicStore/Program.cs b/src/MusicStore/Program.cs index dbd6dbe8df..d63f395930 100644 --- a/src/MusicStore/Program.cs +++ b/src/MusicStore/Program.cs @@ -11,7 +11,7 @@ namespace MusicStore // This is used to allow deployers to choose the server for testing. .UseKestrel() .UseDefaultHostingConfiguration(args) - .UseIIS() + .UseIISIntegration() .UseStartup("MusicStore") .Build();