From dfc2dd5477e771d6c164a233e0b1ffc91f274939 Mon Sep 17 00:00:00 2001 From: Heavy Bob <ferrettclay@gmail.com> Date: Sat, 5 Apr 2025 23:15:25 +1100 Subject: [PATCH] Use correct net framework. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a29d148..8e31dd3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: "6.0.x" + dotnet-version: "9.0.x" - name: Restore dependencies run: dotnet restore AutoTrackR2.sln @@ -29,7 +29,7 @@ jobs: - name: Copy build output run: | - Copy-Item "AutoTrackR2\bin\Release\net6.0-windows\*" "artifacts\" + Copy-Item "AutoTrackR2\bin\Release\net9.0-windows\*" "artifacts\" Copy-Item "AutoTrackR2_Setup\bin\Release\*" "artifacts\" - name: Upload artifacts