NET10 has been officially released and it would be nice to have it available to start using it with our builds and deploys.
As a workaround we will use the following until it is available:
install:
- 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.100' -InstallDir "$env:ProgramFiles\dotnet"
before_build:
- cmd: dotnet --version
Thanks in advance.