From 165bbdfd723cc041f29e0b7f0114194d6b83bb9c Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 13 Nov 2024 02:00:18 -0500 Subject: [PATCH] Add .NET 9 to target frameworks --- .github/workflows/build_nupkg.yml | 2 +- .github/workflows/check_pr.yml | 2 +- SabreTools.Hashing.Test/SabreTools.Hashing.Test.csproj | 2 +- SabreTools.Hashing/SabreTools.Hashing.csproj | 8 ++++---- publish-nix.sh | 4 ++-- publish-win.ps1 | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build_nupkg.yml b/.github/workflows/build_nupkg.yml index ac3d20e..aaf4409 100644 --- a/.github/workflows/build_nupkg.yml +++ b/.github/workflows/build_nupkg.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x - name: Restore dependencies run: dotnet restore diff --git a/.github/workflows/check_pr.yml b/.github/workflows/check_pr.yml index b623bb8..9d421c5 100644 --- a/.github/workflows/check_pr.yml +++ b/.github/workflows/check_pr.yml @@ -11,7 +11,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x - name: Build run: dotnet build diff --git a/SabreTools.Hashing.Test/SabreTools.Hashing.Test.csproj b/SabreTools.Hashing.Test/SabreTools.Hashing.Test.csproj index aafbba2..e6c00bd 100644 --- a/SabreTools.Hashing.Test/SabreTools.Hashing.Test.csproj +++ b/SabreTools.Hashing.Test/SabreTools.Hashing.Test.csproj @@ -1,7 +1,7 @@ - net462;net472;net48;net6.0;net7.0;net8.0 + net462;net472;net48;net6.0;net7.0;net8.0;net9.0 false false latest diff --git a/SabreTools.Hashing/SabreTools.Hashing.csproj b/SabreTools.Hashing/SabreTools.Hashing.csproj index 26f8698..45f6744 100644 --- a/SabreTools.Hashing/SabreTools.Hashing.csproj +++ b/SabreTools.Hashing/SabreTools.Hashing.csproj @@ -2,7 +2,7 @@ - net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0 + net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0 false false latest @@ -29,11 +29,11 @@ win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64 - + win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64 - net6.0;net7.0;net8.0 + net6.0;net7.0;net8.0;net9.0 @@ -44,7 +44,7 @@ - + diff --git a/publish-nix.sh b/publish-nix.sh index d6e50ff..a2bc965 100644 --- a/publish-nix.sh +++ b/publish-nix.sh @@ -1,14 +1,14 @@ #! /bin/bash # This batch file assumes the following: -# - .NET 8.0 (or newer) SDK is installed and in PATH +# - .NET 9.0 (or newer) SDK is installed and in PATH # # If any of these are not satisfied, the operation may fail # in an unpredictable way and result in an incomplete output. # Optional parameters NO_BUILD=false -while getopts "uba" OPTION +while getopts "b" OPTION do case $OPTION in b) diff --git a/publish-win.ps1 b/publish-win.ps1 index e25bf87..4d349d2 100644 --- a/publish-win.ps1 +++ b/publish-win.ps1 @@ -1,5 +1,5 @@ # This batch file assumes the following: -# - .NET 8.0 (or newer) SDK is installed and in PATH +# - .NET 9.0 (or newer) SDK is installed and in PATH # # If any of these are not satisfied, the operation may fail # in an unpredictable way and result in an incomplete output.