From 6e959746e557609eb8474f4639c6123a35f55fd3 Mon Sep 17 00:00:00 2001 From: Stern <70122891+SternXD@users.noreply.github.com> Date: Sat, 27 Jul 2024 23:17:34 -0400 Subject: [PATCH] Update winrt.yml --- .github/workflows/winrt.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/winrt.yml b/.github/workflows/winrt.yml index 264e9a78c92b0..edbbca1ff5095 100644 --- a/.github/workflows/winrt.yml +++ b/.github/workflows/winrt.yml @@ -35,9 +35,22 @@ jobs: - name: Restore NuGet packages run: nuget restore PCSX2_qt.sln + - name: Download Patches + shell: cmd + run: | + cd bin/resources + aria2c -Z "https://github.com/PCSX2/pcsx2_patches/releases/tag/latest/download/patches.zip" + + - name: Download Dependencies + shell: cmd + run: | + aria2c -Z "https://github.com/PCSX2/pcsx2-windows-dependencies/releases/download/latest-windows-dependencies/pcsx2-windows-dependencies.7z" + + - name: Extract some files + run: 7z x pcsx2-windows-dependencies.7z -o"./" - name: Build the project - run: msbuild PCSX2_qt.sln /t:Restore,Rebuild /p:Configuration=Release /p:Platform=x64 + run: msbuild PCSX2_qt.sln /m /p:PlatformToolset=v143 /t:Restore,Rebuild /p:Configuration=Release /p:Platform=x64 /t:restore,build /p:RestorePackagesConfig=true - name: Build APPX run: |