Skip to content

Commit 929c2a0

Browse files
authored
Upgrade MonoMod.RuntimeDetour to 25.3.3 and Add .NET 10 support (#136)
1 parent a2df8aa commit 929c2a0

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
7.x
3030
8.x
3131
9.x
32+
10.x
3233
3334
- name: Log dotnet info
3435
run: dotnet --info

.github/workflows/publish_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup dotnet
2626
uses: actions/setup-dotnet@v4
2727
with:
28-
dotnet-version: '9.x'
28+
dotnet-version: '10.x'
2929

3030
- name: Get Version
3131
id: get_version

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<HarmonyXVersion>2.15.0</HarmonyXVersion>
55
<HarmonyXVersionFull>2.15.0.0</HarmonyXVersionFull>
66
<HarmonyXVersionSuffix></HarmonyXVersionSuffix>
7-
<MonoModRuntimeDetour>25.3.0</MonoModRuntimeDetour>
7+
<MonoModRuntimeDetour>25.3.3</MonoModRuntimeDetour>
88
</PropertyGroup>
99

1010
</Project>

HarmonyTests/HarmonyTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net35;net452;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>net35;net452;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
55
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
66
<LangVersion>latest</LangVersion>
77
<IsPackable>false</IsPackable>

TestLibrary/TestLibrary.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net35;net452;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net35;net452;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
55
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
66
<LangVersion>preview</LangVersion>
77
<IsPackable>false</IsPackable>
@@ -31,4 +31,4 @@
3131
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
3232
</ItemGroup>
3333

34-
</Project>
34+
</Project>

0 commit comments

Comments
 (0)