Skip to content

Commit 7051bc3

Browse files
try to enable dotnet 8 on appveyor, and enable roll forward in global.json
1 parent f172aa5 commit 7051bc3

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

appveyor.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ init:
22
- git config --global core.autocrlf input
33
- net start MSSQL$SQL2019
44
image: Visual Studio 2022
5+
before_build:
6+
# switch on dotnet 8 on appveyor: https://github.com/appveyor/ci/issues/3897#issuecomment-1827682384
7+
- choco install dotnet-sdk --version 8.0.100
58
build_script:
69
- cmd: build.cmd GenerateDocs
710
test: off

global.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
{ "sdk": { "version": "8.0.100" } }
1+
{
2+
"sdk":
3+
{
4+
"version": "8.0.100"
5+
, "rollForward": "latestFeature"
6+
}
7+
}

0 commit comments

Comments
 (0)