From 860a552bc76c8e3bb20a609350bf9d854fa964de Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Fri, 25 Mar 2022 16:11:01 -0400 Subject: [PATCH] Fix swapped launch settings default (#1925) --- src/Identity/Properties/launchSettings.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Identity/Properties/launchSettings.json b/src/Identity/Properties/launchSettings.json index 7ee9b9ed5c..da74cf4e52 100644 --- a/src/Identity/Properties/launchSettings.json +++ b/src/Identity/Properties/launchSettings.json @@ -15,6 +15,14 @@ "ASPNETCORE_ENVIRONMENT": "Development" } }, + "Identity": { + "commandName": "Project", + "launchBrowser": false, + "applicationUrl": "http://localhost:33656", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, "Identity-SelfHost": { "commandName": "Project", "launchBrowser": false, @@ -23,14 +31,6 @@ "ASPNETCORE_ENVIRONMENT": "Development", "developSelfHosted": "true" } - }, - "Identity": { - "commandName": "Project", - "launchBrowser": false, - "applicationUrl": "http://localhost:33656", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } } } }