Skip to content

Commit e2a027b

Browse files
committed
Added .NET 10 install in appveyor.yml, as vs2026 is not available.
1 parent 7459310 commit e2a027b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

appveyor8.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@ branches:
33
only:
44
- develop8
55
configuration: release
6-
image: Visual Studio 2026
6+
image: Visual Studio 2022
7+
install:
8+
- ps: |
9+
Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
10+
& $env:temp\dotnet-install.ps1 -Architecture x64 -Version '10.0.100' -InstallDir "$env:ProgramFiles\dotnet"
11+
before_build:
12+
- cmd: dotnet --version
713
init:
814
- ps: >-
915
Update-AppveyorBuild -Version "8.4.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"

0 commit comments

Comments
 (0)