From bcda54f47784da2da42dab0f7375a9f8230736fb Mon Sep 17 00:00:00 2001 From: Martin Kyjac Date: Fri, 18 Oct 2024 12:28:27 +0200 Subject: [PATCH] Change launch profile name --- examples/DancingGoat-Shopify/Properties/launchSettings.json | 6 +++--- scripts/Restore-CI.ps1 | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/DancingGoat-Shopify/Properties/launchSettings.json b/examples/DancingGoat-Shopify/Properties/launchSettings.json index 8449dfb..ccde0b1 100644 --- a/examples/DancingGoat-Shopify/Properties/launchSettings.json +++ b/examples/DancingGoat-Shopify/Properties/launchSettings.json @@ -7,13 +7,13 @@ "ASPNETCORE_ENVIRONMENT": "Development" } }, - "XbyKUpdate": { + "DancingGoat": { "commandName": "Project", "launchBrowser": true, + "applicationUrl": "https://localhost:14065", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "http://localhost:13268" + } }, "EcommerceShopify.WebCI": { "commandName": "Project", diff --git a/scripts/Restore-CI.ps1 b/scripts/Restore-CI.ps1 index dfa69f4..b59c0fc 100644 --- a/scripts/Restore-CI.ps1 +++ b/scripts/Restore-CI.ps1 @@ -7,7 +7,7 @@ Import-Module (Resolve-Path Utilities) ` $projectPath = Get-WebProjectPath $repositoryPath = Join-Path $projectPath "App_Data/CIRepository" -$launchProfile = $Env:ASPNETCORE_ENVIRONMENT -eq "CI" ? "EcommerceShopify.WebCI" : "IIS Express" +$launchProfile = $Env:ASPNETCORE_ENVIRONMENT -eq "CI" ? "EcommerceShopify.WebCI" : "DancingGoat" $configuration = $Env:ASPNETCORE_ENVIRONMENT -eq "CI" ? "Release" : "Debug" $command = "dotnet run " + `