From 25100ec1f7c8da8f798613da74826038af81a50e Mon Sep 17 00:00:00 2001 From: Igor Velikorossov Date: Sun, 15 Jan 2023 21:37:20 +1100 Subject: [PATCH] Ensure release builds are clean --- appveyor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 78ee68d0f19..c2bf5290eb2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -42,8 +42,11 @@ install: .\scripts\Update-DotnetVersion.ps1 } - ps: | + # Install the required .NET SDK Invoke-WebRequest "https://dot.net/v1/dotnet-install.ps1" -OutFile "./dotnet-install.ps1" ./dotnet-install.ps1 -JsonFile global.json -InstallDir 'C:\Program Files\dotnet' + # Remove the script so it doesn't "pollute" the build + Remove-Item -Path .\dotnet-install.ps1 - cmd: git submodule update --init --recursive - cmd: |- cd scripts