José Manuel Nieto
José Manuel Nieto
Add this, please
Interesting. Could you post a snapshot of how it renders? Thanks :)
> > Interesting. Could you post a snapshot of how it renders? Thanks :) > > If you see my pull request, I posted some code to replicate my need....
> it should be just matter of selecting compression type with the TarWriter or TarArchive https://github.com/adamhathcock/sharpcompress/blob/master/tests/SharpCompress.Test/Tar/TarWriterTests.cs I've tried with this, but I didn't get the desired results. ```csharp [Fact] public...
OK, the problem doesn't seem to be related with the disposal, but with the way I added the entry: ``` tarfile.AddEntry("something.txt", memoryStream); ``` as opposed to ``` tarfile.AddEntry("something.txt", memoryStream, memoryStream.Length);...
Oh, I see. I understand your decision. It's useful for just a few user case. Unfortunately, it seems that it's mandatory for creating .deb files. My [new project](https://github.com/SuperJMN/DotnetPackaging) is exactly...
Thank you. I hope it gets better. I'm using it inside this application: https://github.com/SuperJMN/Lumia-WoA-Installer (in the most recent dev branch, still not committed). I will use it to import driver...
It's already merged. I hope it's published to NuGet.org soon! Thank you.
Wow, that's FAST. Thanks a lot! I think my tool is now ready for prime time! As soon as I add a "About" section, this wonderful project will be in...
Hello again! Unfortunately, the performance is still alarming. It seems the extraction is quite quick at the beginning, but performance degrades as the extraction of the files progresses. I've profiled...