diff --git a/.github/actions/test-setup-dotnet/action.yml b/.github/actions/test-setup-dotnet/action.yml
index 8de1e6ed..049cab2e 100644
--- a/.github/actions/test-setup-dotnet/action.yml
+++ b/.github/actions/test-setup-dotnet/action.yml
@@ -18,7 +18,7 @@ runs:
- name: Setup .NET Sdk
uses: actions/setup-dotnet@v4
with:
- dotnet-version: '9.0.101'
+ dotnet-version: '10.0.x'
- name: Get .NET Channels
uses: ./.github/actions/get-dotnet-channel
diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml
index 5113bce4..3b0fbc20 100644
--- a/.github/workflows/test-build.yml
+++ b/.github/workflows/test-build.yml
@@ -49,7 +49,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
- dotnet-version: '9.0.101'
+ dotnet-version: '10.0.x'
- name: Build
run: |
diff --git a/.github/workflows/test-unix-mono.yml b/.github/workflows/test-unix-mono.yml
index e0f77117..3d348f0a 100644
--- a/.github/workflows/test-unix-mono.yml
+++ b/.github/workflows/test-unix-mono.yml
@@ -75,7 +75,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
- dotnet-version: '9.0.101'
+ dotnet-version: '10.0.x'
env:
DOTNET_INSTALL_DIR: ${{ runner.temp }}/.dotnet
diff --git a/.github/workflows/test-windows-framework.yml b/.github/workflows/test-windows-framework.yml
index b2b7b91d..6e841884 100644
--- a/.github/workflows/test-windows-framework.yml
+++ b/.github/workflows/test-windows-framework.yml
@@ -57,7 +57,7 @@ jobs:
- name: Setup .NET Sdk
uses: actions/setup-dotnet@v4
with:
- dotnet-version: '9.0.101'
+ dotnet-version: '10.0.x'
- name: Get Installed .NET Sdk Information
run: dotnet --info
diff --git a/.github/workflows/test-windows-mono.yml b/.github/workflows/test-windows-mono.yml
index f91844ad..f9276699 100644
--- a/.github/workflows/test-windows-mono.yml
+++ b/.github/workflows/test-windows-mono.yml
@@ -57,7 +57,7 @@ jobs:
- name: Setup .NET Sdk
uses: actions/setup-dotnet@v4
with:
- dotnet-version: '9.0.101'
+ dotnet-version: '10.0.x'
- name: Get Installed .NET Sdk Information
run: dotnet --info
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 01676a85..9e9e05b9 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -38,8 +38,8 @@ env:
# You are interested in changing these values
BUILD_CONFIGURATIONS: "['Debug', 'Release']"
BUILD_CONFIGURATIONS_WITH_REF: "['Debug', 'Release']"
- DOTNET_TARGET_FRAMEWORKS: "['netcoreapp3.0', 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0', 'net8.0', 'net9.0']"
- DOTNET_TARGET_FRAMEWORKS_MACOS_ARM64: "['net6.0', 'net7.0', 'net8.0', 'net9.0']"
+ DOTNET_TARGET_FRAMEWORKS: "['netcoreapp3.0', 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0', 'net8.0', 'net9.0', 'net10.0']"
+ DOTNET_TARGET_FRAMEWORKS_MACOS_ARM64: "['net6.0', 'net7.0', 'net8.0', 'net9.0', 'net10.0']"
FRAMEWORK_TARGET_FRAMEWORKS: "['net35', 'net452', 'net472', 'net48']"
jobs:
diff --git a/Directory.Build.props b/Directory.Build.props
index 4a50c95d..c4794a2b 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -22,7 +22,7 @@
- net35;net452;net472;net48;netcoreapp3.0;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0
+ net35;net452;net472;net48;netcoreapp3.0;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0;net10.0
true
preview
false
@@ -32,7 +32,7 @@
false
false
- true
+ true
@@ -79,6 +79,7 @@
+
diff --git a/Lib.Harmony/Lib.Harmony.csproj b/Lib.Harmony/Lib.Harmony.csproj
index 6526967d..158ef232 100644
--- a/Lib.Harmony/Lib.Harmony.csproj
+++ b/Lib.Harmony/Lib.Harmony.csproj
@@ -33,6 +33,7 @@
+
diff --git a/global.json b/global.json
index d3adbc47..b24aad66 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "9.0.101",
- "rollForward": "latestFeature"
+ "version": "10.0.100",
+ "rollForward": "latestPatch"
}
}