From 99bc05c7d76a642e50282246826f3fbef895aac3 Mon Sep 17 00:00:00 2001 From: Kiran Challa Date: Fri, 20 May 2016 10:16:48 -0700 Subject: [PATCH] [Fixes #663] Replace 'web' with 'MusicStore' in launchSettings.json --- src/MusicStore/Properties/launchSettings.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/MusicStore/Properties/launchSettings.json b/src/MusicStore/Properties/launchSettings.json index 6107e65b8f..a2f3822f09 100644 --- a/src/MusicStore/Properties/launchSettings.json +++ b/src/MusicStore/Properties/launchSettings.json @@ -12,13 +12,15 @@ "commandName": "IISExpress", "launchBrowser": true, "environmentVariables": { - "Hosting:Environment": "Development" + "ASPNETCORE_ENVIRONMENT": "Development" } }, - "web": { - "commandName": "web", + "MusicStore": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "http://localhost:5000/", "environmentVariables": { - "Hosting:Environment": "Development" + "ASPNETCORE_ENVIRONMENT": "Development" } } }