Skip to content

Commit

Permalink
try manual 9.0.200 install
Browse files Browse the repository at this point in the history
  • Loading branch information
bagusnl committed Jan 6, 2025
1 parent 95b9763 commit 87264db
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,21 @@ jobs:
with:
submodules: recursive

- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
dotnet-quality: ${{ env.DOTNET_QUALITY }}
cache: true
cache-dependency-path: CollapseLauncher/packages.lock.json
# - name: Install .NET
# uses: actions/setup-dotnet@v4
# with:
# dotnet-version: ${{ env.DOTNET_VERSION }}
# dotnet-quality: ${{ env.DOTNET_QUALITY }}
# cache: true
# cache-dependency-path: CollapseLauncher/packages.lock.json

- name: Manual .NET install
run: |
Import-Module "$env:ChocolateyInstall/helpers/chocolateyInstaller.psm1"
Invoke-WebRequest 'https://download.visualstudio.microsoft.com/download/pr/7c9b3974-1350-4fc0-9e71-26ef66400270/4f8ba90528060880240f392408e50053/dotnet-sdk-9.0.200-preview.0.24575.35-win-x64.exe' -OutFile 'dotnet-9.0.200-pre.exe'
./dotnet-9.0.200-pre.exe /install /quiet /norestart
refreshenv
dotnet --version
# - name: Restore
# run: dotnet restore CollapseLauncher --locked-mode
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ for:
git submodule update --init --force --recursive --jobs=4
- ps: >-
Invoke-WebRequest 'https://dot.net/v1/dotnet-install.ps1' -OutFile 'dotnet-install.ps1'
Invoke-WebRequest 'https://download.visualstudio.microsoft.com/download/pr/7c9b3974-1350-4fc0-9e71-26ef66400270/4f8ba90528060880240f392408e50053/dotnet-sdk-9.0.200-preview.0.24575.35-win-x64.exe' -OutFile 'dotnet-9.0.200-pre.exe'
./dotnet-install.ps1 -Channel 9.0 -InstallDir "C:\Program Files\dotnet" -Quality signed -Verbose
./dotnet-9.0.200-pre.exe /install /quiet /norestart
RefreshEnv
Expand Down

0 comments on commit 87264db

Please sign in to comment.