We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d72c4ce commit d5e207cCopy full SHA for d5e207c
appveyor.yml
@@ -3,6 +3,9 @@ configuration: Release
3
platform: x64
4
install:
5
- git submodule update --init
6
+ - ps: |
7
+ Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
8
+ & $env:temp\dotnet-install.ps1 -Architecture x64 -Version '10.0.100' -InstallDir "$env:ProgramFiles\dotnet"
9
before_build:
10
- dotnet restore %APPVEYOR_BUILD_FOLDER%\Source\NETworkManager.sln
11
- ps: |
0 commit comments