v1.2.0
NOTE
The project has been refactored and renamed from Il2CppUnhollower!
Most of the changes are breaking, so don't naïvely upgrade your plugins and packages!Please refer to changelog below for more information. Note that old Il2CppUnhollower assemblies are still available, and the code can be found in
legacy-unhollower
branch.
Stable releases are now available via NuGet.org!
Changelog
New features
- Generator: Add
Il2CppPrefixMode
option that affects how generated assemblies are prefixed (#39, @ds5678). Two options are availablePrefixMode.OptIn
(Default): Namespaces and assembly names specified inNamespacesAndAssembliesToPrefix
list will be prefixed withIl2Cpp
when generating interop assemblies.PrefixMode.OptOut
: All namespaces and assembly names will be prefixed withIl2Cpp
when generating interop assemblies. You can opt out from the behaviour for specific namespaces and assemblies withNamespacesAndAssembliesToNotPrefix
list- Note: The default represents the current behaviour of v1. Starting from v2 the default will likely be switched to opt-out
- CLI: Added new CLI flags for setting the above options:
--use-opt-out-prefixing
,--add-prefix-to