diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml
index ff26ca8..032cffa 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -9,17 +9,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup .NET
- uses: actions/setup-dotnet@v4
+ uses: actions/setup-dotnet@v5
with:
dotnet-version: |
- 6.0.x
8.0.x
9.0.x
+ 10.0.x
- name: Run tests
run: dotnet test
@@ -36,7 +36,7 @@ jobs:
git push origin rolling --force
- name: Upload to rolling
- uses: ncipollo/release-action@v1.14.0
+ uses: ncipollo/release-action@v1.20.0
with:
allowUpdates: True
artifacts: "*.nupkg,*.snupkg,*.zip"
diff --git a/.github/workflows/check_pr.yml b/.github/workflows/check_pr.yml
index c9e23ec..cc84d18 100644
--- a/.github/workflows/check_pr.yml
+++ b/.github/workflows/check_pr.yml
@@ -6,15 +6,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- name: Setup .NET
- uses: actions/setup-dotnet@v4
+ uses: actions/setup-dotnet@v5
with:
dotnet-version: |
- 6.0.x
8.0.x
9.0.x
+ 10.0.x
- name: Build
run: dotnet build
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 29bcc25..689cb21 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -10,7 +10,7 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
- "program": "${workspaceFolder}/Hasher/bin/Debug/net9.0/Hasher.dll",
+ "program": "${workspaceFolder}/Hasher/bin/Debug/net10.0/Hasher.dll",
"args": [],
"cwd": "${workspaceFolder}",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
diff --git a/Hasher/Hasher.csproj b/Hasher/Hasher.csproj
index 2d36842..168877a 100644
--- a/Hasher/Hasher.csproj
+++ b/Hasher/Hasher.csproj
@@ -1,7 +1,7 @@
- net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0
+ net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0;net10.0
Exe
false
true
@@ -24,14 +24,14 @@
win-x86;win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64
- net6.0;net7.0;net8.0;net9.0
+ net6.0;net7.0;net8.0;net9.0;net10.0
-
+
\ No newline at end of file
diff --git a/SabreTools.Hashing.Test/CompressedStreamTests.cs b/SabreTools.Hashing.Test/CompressedStreamTests.cs
index 2413b95..382f96b 100644
--- a/SabreTools.Hashing.Test/CompressedStreamTests.cs
+++ b/SabreTools.Hashing.Test/CompressedStreamTests.cs
@@ -58,4 +58,4 @@ namespace SabreTools.Hashing.Test
}
}
}
-}
\ No newline at end of file
+}
diff --git a/SabreTools.Hashing.Test/HashToolTests.cs b/SabreTools.Hashing.Test/HashToolTests.cs
index 6c078d3..dd54319 100644
--- a/SabreTools.Hashing.Test/HashToolTests.cs
+++ b/SabreTools.Hashing.Test/HashToolTests.cs
@@ -20,7 +20,7 @@ namespace SabreTools.Hashing.Test
{
get
{
- var values = Enum.GetValues(typeof(HashType));
+ var values = Enum.GetValues();
var set = new List