You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently for .net 6 and other platforms we have a runtime dependency on Mono.Posix.NetStandard. This is only because we need libMonoPosixHelper.so/dylib on the various platforms. We already pulled in the required C# code so we are independent of that library. So we should also pull in the required native bits.
Now we can either
Create a new native lib libZipSharpHelper which contains those calls or..
Fold that code into the libzip native libraries.
Not sure which option is better..
The text was updated successfully, but these errors were encountered:
Mono.Posix + the helper native lib will soon be moving to their own repository. Perhaps we could submodule it and refactor the native helper code so that we can include the sources we need in our build?
Currently for .net 6 and other platforms we have a runtime dependency on Mono.Posix.NetStandard. This is only because we need libMonoPosixHelper.so/dylib on the various platforms. We already pulled in the required C# code so we are independent of that library. So we should also pull in the required native bits.
Now we can either
libZipSharpHelper
which contains those calls or..libzip
native libraries.Not sure which option is better..
The text was updated successfully, but these errors were encountered: