Describe the bug
unloading module on server side, will unload native requirements, while client side uses them
To Reproduce
Example module with native dll requirement
SV: dotnet_load("Example")
CL: dotnet_load("Example")
SV: dotnet_unload("Example")
CL: try use code from native library
CL: System.AccessViolationException // something like nullpointerexception
Expected behavior
not unload native requirement
i'm working on making my module server sided.
this can't be done easily i think.
it's not critical.
just todo maybe
Describe the bug
unloading module on server side, will unload native requirements, while client side uses them
To Reproduce
Example module with native dll requirement
SV:
dotnet_load("Example")CL:
dotnet_load("Example")SV:
dotnet_unload("Example")CL: try use code from native library
CL:
System.AccessViolationException// something like nullpointerexceptionExpected behavior
not unload native requirement
i'm working on making my module server sided.
this can't be done easily i think.
it's not critical.
just
todomaybe