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 " + `