From 99676a2ab002e92ed83d07472bcd606d239d1250 Mon Sep 17 00:00:00 2001 From: Daniel Grim Date: Wed, 25 May 2016 13:13:03 -0400 Subject: [PATCH] Fix project not running in IIS --- src/dotnetstarter/Properties/launchSettings.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/dotnetstarter/Properties/launchSettings.json b/src/dotnetstarter/Properties/launchSettings.json index 3721983..b9948bf 100644 --- a/src/dotnetstarter/Properties/launchSettings.json +++ b/src/dotnetstarter/Properties/launchSettings.json @@ -3,13 +3,18 @@ "IIS Express": { "commandName": "IISExpress", "launchBrowser": true, + "launchUrl": "http://localhost:5000", "environmentVariables": { - "ASPNET_ENV": "Development" + "ASPNETCORE_ENVIRONMENT": "Development" } }, - "kestrel": { - "commandName": "kestrel", - "sdkVersion": "dnx-coreclr-win-x64.1.0.0-rc1-final" + "dotnetstarter": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "http://localhost:5000", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } } } } \ No newline at end of file