From cfa0ee020b43feb3061ba34340a923c593ce8fc7 Mon Sep 17 00:00:00 2001 From: Marc Gravell Date: Fri, 6 Mar 2026 18:01:20 +0000 Subject: [PATCH 1/2] fix CI --- appveyor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index ae9d477bf..1adaec8f3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,6 +6,9 @@ skip_commits: files: - '**/*.md' +install: + - choco install dotnet-sdk --version 10.0.102 + environment: Appveyor: true # Postgres From f146f9409e0047412409be7bed0d81fa881ec3b7 Mon Sep 17 00:00:00 2001 From: Marc Gravell Date: Wed, 29 Apr 2026 06:13:09 +0100 Subject: [PATCH 2/2] try again --- appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 1adaec8f3..5ec88faaf 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,7 +7,9 @@ skip_commits: - '**/*.md' install: - - choco install dotnet-sdk --version 10.0.102 +- ps: | + Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1" + & $env:temp\dotnet-install.ps1 -Architecture x64 -Version '10.0.102' -InstallDir "$env:ProgramFiles\dotnet" environment: Appveyor: true