mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-09 21:32:01 +00:00
[PR #264] Fix intermittent XZ errors #331
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/quamotion/dotnet-packaging/pull/264
State: closed
Merged: No
Replacing the custom NativeMethods P/Invoke code with Joveler.Compression.XZ. This seem to have gotten rid of my intermittent failures with large files. The Joveler.Compression.XZ doesn't expose lzma_stream_footer_decode (and the other functions used to read the uncompressed size). Instead this code is implemented in C#. It would of course be possible to add this to Joveler.Compression.XZ...
This approach also makes this library have less code to maintain.
Fixes #99