![]() |
VOOZH | about |
dotnet add package MonoMod --version 22.7.31.1
NuGet\Install-Package MonoMod -Version 22.7.31.1
<PackageReference Include="MonoMod" Version="22.7.31.1" />
<PackageVersion Include="MonoMod" Version="22.7.31.1" />Directory.Packages.props
<PackageReference Include="MonoMod" />Project file
paket add MonoMod --version 22.7.31.1
#r "nuget: MonoMod, 22.7.31.1"
#:package MonoMod@22.7.31.1
#addin nuget:?package=MonoMod&version=22.7.31.1Install as a Cake Addin
#tool nuget:?package=MonoMod&version=22.7.31.1Install as a Cake Tool
General purpose .NET assembly modding "basework". This package contains the core IL patcher and relinker.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 is compatible. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net35 net35 is compatible. net40 net40 was computed. net403 net403 was computed. net45 net45 was computed. net451 net451 was computed. net452 net452 is compatible. net46 net46 was computed. net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on MonoMod:
| Package | Downloads |
|---|---|
|
OTAPI.Upcoming.tModLoader
The Open Terraria API, known as OTAPI, is a low-level API for Terraria that rewrites and hooks into the official or modded binaries for others to use. OTAPI is primarily a server modification and is available as a cross platform package via NuGet. Version 3.0 is now a .NET6 library thanks to ModFramework being able to retarget the .NET4 vanilla assembly up to .NET6. This means that any mod you create can be written as a .NET6 module and later merged into the patched assembly thanks to MonoMod. Here is what is now possible: - Native Runtime hooks, just reference OTAPI.Runtime.dll and register to MonoMod events generated from the Terraria assembly. - Full .NET6 ecosystem and its performance improvements. No need for two targets such as Windows & Mono anymore either. - A new optional internal module system via ModFramework to load precompiled dll's, .cs files or even top level classes. - A strong set of libraries with methods and extensions to help you build more mods. - Create 1 file MonoMod patches to rewrite or inject new meta data to the assembly. |
|
|
OTAPI.Upcoming
The Open Terraria API, known as OTAPI, is a low-level API for Terraria that rewrites and hooks into the official or modded binaries for others to use. OTAPI is primarily a server modification and is available as a cross platform package via NuGet. Version 3.0 is now a .NET9 library thanks to ModFramework being able to retarget the .NET4 vanilla assembly up to .NET9. This means that any mod you create can be written as a .NET9 module and later merged into the patched assembly thanks to MonoMod. Here is what is now possible: - Native Runtime hooks, just reference OTAPI.Runtime.dll and register to MonoMod events generated from the Terraria assembly. - Full .NET9 ecosystem and its performance improvements. No need for two targets such as Windows & Mono anymore either. - A new optional internal module system via ModFramework to load precompiled dll's, .cs files or even top level classes. - A strong set of libraries with methods and extensions to help you build more mods. - Create 1 file MonoMod patches to rewrite or inject new meta data to the assembly. |
|
|
MonoMod.RuntimeDetour.HookGen
Auto-generate hook helper .dlls, hook arbitrary methods via events: On.Namespace.Type.Method += YourHandlerHere; |
|
|
ModFramework
A tool for rewriting .net binaries. Can allow rewriting of Types to Interfaces, Arrays to Extensible Collections, or even Fields to Properties. |
|
|
OTAPI.Upcoming.Mobile
The Open Terraria API, known as OTAPI, is a low-level API for Terraria that rewrites and hooks into the official or modded binaries for others to use. OTAPI is primarily a server modification and is available as a cross platform package via NuGet. Version 3.0 is now a .NET9 library thanks to ModFramework being able to retarget the .NET4 vanilla assembly up to .NET9. This means that any mod you create can be written as a .NET9 module and later merged into the patched assembly thanks to MonoMod. Here is what is now possible: - Native Runtime hooks, just reference OTAPI.Runtime.dll and register to MonoMod events generated from the Terraria assembly. - Full .9 ecosystem and its performance improvements. No need for two targets such as Windows & Mono anymore either. - A new optional internal module system via ModFramework to load precompiled dll's, .cs files or even top level classes. - A strong set of libraries with methods and extensions to help you build more mods. - Create 1 file MonoMod patches to rewrite or inject new meta data to the assembly. |
Showing the top 4 popular GitHub repositories that depend on MonoMod:
| Repository | Stars |
|---|---|
|
LavaGang/MelonLoader
The World's First Universal Mod Loader for Unity Games compatible with both Il2Cpp and Mono
|
|
|
hk-modding/api
Hollow Knight Modding API
|
|
|
SignatureBeef/Open-Terraria-API
Open Terraria API - Mac, Linux & Windows
|
|
|
RexProg/ILProtectorUnpacker
ILProtector Unpacker Script
|
| Version | Downloads | Last Updated |
|---|---|---|
| 22.7.31.1 | 31,050 | 12/24/2022 |
| 22.5.1.1 | 139,557 | 5/1/2022 |
| 22.4.23.1 | 2,155 | 4/23/2022 |
| 22.3.23.4 | 8,682 | 3/23/2022 |
| 22.2.10.1 | 2,312 | 2/12/2022 |
| 22.1.29.1 | 3,047 | 2/2/2022 |
| 22.1.4.3 | 14,789 | 1/4/2022 |
| 21.12.13.1 | 1,922 | 12/14/2021 |
| 21.12.11.1 | 11,965 | 12/11/2021 |
| 21.11.9.2 | 10,276 | 12/8/2021 |
| 21.11.1.1 | 3,140 | 11/2/2021 |
| 21.10.10.1 | 2,050 | 10/10/2021 |
| 21.10.8.11 | 1,973 | 10/8/2021 |
| 21.9.19.1 | 5,660 | 9/19/2021 |
| 21.8.19.1 | 3,503 | 8/19/2021 |
| 21.8.5.1 | 22,665 | 8/5/2021 |
| 21.7.22.3 | 16,158 | 7/22/2021 |
| 21.7.8.3 | 2,170 | 7/9/2021 |
| 21.6.21.1 | 11,736 | 6/21/2021 |
| 21.4.29.1 | 15,273 | 5/6/2021 |