Skip to content

Commit daba398

Browse files
committed
Ubuntu package dotnet-sdk-10.0 uninstalls earlier .NET runtimes
... and the install is rather slow, so try a different approach.
1 parent d157005 commit daba398

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ for:
2020

2121
# install .NET 10 SDK
2222
install:
23-
- sudo apt-get update && sudo apt-get install -y dotnet-sdk-10.0
23+
- curl -L https://dot.net/v1/dotnet-install.sh -o dotnet-install.sh
24+
- chmod +x ./dotnet-install.sh
25+
- sudo ./dotnet-install.sh --channel 10.0
2426

2527
# build and run tests
2628
build_script:

0 commit comments

Comments
 (0)