From 7afffd81726dc9c14716892f73e91317f0b38304 Mon Sep 17 00:00:00 2001 From: Bugadinho <31747009+Bugadinho@users.noreply.github.com> Date: Sun, 5 Jan 2025 23:14:31 -0300 Subject: [PATCH 1/2] Use a WinRT compatible TargetFramework --- Bloxstrap/Bloxstrap.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bloxstrap/Bloxstrap.csproj b/Bloxstrap/Bloxstrap.csproj index 9c9b70c..0a7aef1 100644 --- a/Bloxstrap/Bloxstrap.csproj +++ b/Bloxstrap/Bloxstrap.csproj @@ -2,7 +2,7 @@ WinExe - net6.0-windows + net6.0-windows10.0.17763.0 enable true True From bfcd493a96ae6bf4537c76cd7f205649a07b152d Mon Sep 17 00:00:00 2001 From: Bugadinho <31747009+Bugadinho@users.noreply.github.com> Date: Sun, 5 Jan 2025 23:48:46 -0300 Subject: [PATCH 2/2] Adjust build paths to accomodate changed target framework --- .github/workflows/ci-debug.yml | 2 +- .github/workflows/ci-release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-debug.yml b/.github/workflows/ci-debug.yml index 3c290ac..e61cd96 100644 --- a/.github/workflows/ci-debug.yml +++ b/.github/workflows/ci-debug.yml @@ -27,4 +27,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: Bloxstrap (Debug) (${{ github.sha }}) - path: .\Bloxstrap\bin\Debug\net6.0-windows\win-x64\publish\* \ No newline at end of file + path: .\Bloxstrap\bin\Debug\net6.0-windows10.0.17763.0\win-x64\publish\* \ No newline at end of file diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index e6ea3cf..c242c8d 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -31,7 +31,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: Bloxstrap (Release) (${{ github.sha }}) - path: .\Bloxstrap\bin\Release\net6.0-windows\win-x64\publish\* + path: .\Bloxstrap\bin\Release\net6.0-windows10.0.17763.0\win-x64\publish\* release: needs: build