From 4c83a0ee185afa29475ebeec36671825eea1a59d Mon Sep 17 00:00:00 2001 From: Luke Foust Date: Thu, 14 Nov 2024 20:40:05 -0800 Subject: [PATCH] Just target .net9 for everything --- .github/workflows/ImportBuddy.yaml | 2 +- .../source/ImportBuddy/ImportBuddy/ImportBuddy.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ImportBuddy.yaml b/.github/workflows/ImportBuddy.yaml index 798595101..e56118ab2 100644 --- a/.github/workflows/ImportBuddy.yaml +++ b/.github/workflows/ImportBuddy.yaml @@ -42,7 +42,7 @@ jobs: release_name="ImportBuddy-$tag-${{ matrix.target }}" # Build everything - dotnet publish tools/ImportBuddy/source/ImportBuddy/ImportBuddy.sln --runtime "${{ matrix.target }}" -c Release -o "$release_name" --self-contained true + dotnet publish tools/ImportBuddy/source/ImportBuddy/ImportBuddy.sln --runtime "${{ matrix.target }}" -c Release -o "$release_name" --self-contained true --framework net9.0 # Pack files if [ "${{ matrix.target }}" == "win-x64" ]; then diff --git a/tools/ImportBuddy/source/ImportBuddy/ImportBuddy/ImportBuddy.csproj b/tools/ImportBuddy/source/ImportBuddy/ImportBuddy/ImportBuddy.csproj index 41ba0c9f8..5183d56ab 100644 --- a/tools/ImportBuddy/source/ImportBuddy/ImportBuddy/ImportBuddy.csproj +++ b/tools/ImportBuddy/source/ImportBuddy/ImportBuddy/ImportBuddy.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 enable enable true