js6pak
js6pak
Do we still need to use monomod `DynDllImport`? Can't we just use normal `DllImport` and `NativeLibrary.SetDllImportResolver`?
> Secondly, does NativeLibrary have a ready attribute-based API like `[DynDllImport]`? You can just keep using normal `[DllImport]` And with `SetDllImportResolver` you can do literally anything (changing name, pointing to...
This also doesn't respect bepinex's caching for finding types with mono.cecil Imo interface attribute should be built into unhollower
This is a big design choice, imo base plugin api shouldn't be able to cause desyncs, but it should be possible to make them by sending rpcs yourself.
I agree, but it could very well be a plugin
Are you sure you editied correct config file? Sounds like changes are not applying at all.
Seems like newest SCP:SL 10.1 open-beta and `Proton 5.13-1` fixed the issue?
This could also be used for debuggable builds. And it shouldn't be too hard to implement? It would just be very resource intensive and take some time to make a...
This issue is caused by GCM freeing the password here https://github.com/GitCredentialManager/git-credential-manager/blob/04631c1f691dfcbce1baa63cfcb55c26375fe598/src/shared/Core/Interop/Linux/SecretServiceCollection.cs#L294 Seems like `secret_password_free` is supposed to be used only on the results of `secret_password_lookup_...` apis where they return a...
This could also be resolved just by adding ```cs if (oldAssembly.Name.Name == "System.Private.CoreLib") { return myAssembliesByOld.Single(x => x.Key.Name.Name == "mscorlib").Value; } ``` at https://github.com/knah/Il2CppAssemblyUnhollower/blob/master/AssemblyUnhollower/Contexts/RewriteGlobalContext.cs#L62