From ea22cb1f7936c9e4a913204c816e4a42fee0c822 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 15 Aug 2017 14:55:15 -0400 Subject: [PATCH] do not launch browser on debug --- src/Api/Properties/launchSettings.json | 4 ++-- src/Billing/Properties/launchSettings.json | 4 ++-- src/Identity/Properties/launchSettings.json | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Api/Properties/launchSettings.json b/src/Api/Properties/launchSettings.json index b846e65755..b3787c16f4 100644 --- a/src/Api/Properties/launchSettings.json +++ b/src/Api/Properties/launchSettings.json @@ -10,14 +10,14 @@ "profiles": { "IIS Express": { "commandName": "IISExpress", - "launchBrowser": true, + "launchBrowser": false, "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } }, "Web": { "commandName": "Project", - "launchBrowser": true, + "launchBrowser": false, "launchUrl": "http://localhost:5000", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" diff --git a/src/Billing/Properties/launchSettings.json b/src/Billing/Properties/launchSettings.json index 4771a24580..6a4e659fe3 100644 --- a/src/Billing/Properties/launchSettings.json +++ b/src/Billing/Properties/launchSettings.json @@ -10,7 +10,7 @@ "profiles": { "IIS Express": { "commandName": "IISExpress", - "launchBrowser": true, + "launchBrowser": false, "launchUrl": "", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" @@ -18,7 +18,7 @@ }, "Billing": { "commandName": "Project", - "launchBrowser": true, + "launchBrowser": false, "launchUrl": "", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" diff --git a/src/Identity/Properties/launchSettings.json b/src/Identity/Properties/launchSettings.json index 2edb5e39ff..9fd2353b48 100644 --- a/src/Identity/Properties/launchSettings.json +++ b/src/Identity/Properties/launchSettings.json @@ -10,14 +10,14 @@ "profiles": { "IIS Express": { "commandName": "IISExpress", - "launchBrowser": true, + "launchBrowser": false, "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } }, "Identity": { "commandName": "Identity", - "launchBrowser": true, + "launchBrowser": false, "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" },