Compare commits

..

No commits in common. "66580eed5277987b2605ffcd66677b9ab747e1a2" and "5acb29df2aa9f586b8b00e5c60dfacec1a8cb671" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View File

@ -5,8 +5,8 @@
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<AssemblyVersion>1.5.9</AssemblyVersion> <AssemblyVersion>1.5.8</AssemblyVersion>
<FileVersion>1.5.9</FileVersion> <FileVersion>1.5.8</FileVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@ -19,8 +19,7 @@ public class ZipHelper
{ {
CompressionLevel = CompressionLevel.Normal, CompressionLevel = CompressionLevel.Normal,
CompressionMethod = CompressionMethod.Lzma2, CompressionMethod = CompressionMethod.Lzma2,
ArchiveFormat = OutArchiveFormat.SevenZip, ArchiveFormat = OutArchiveFormat.SevenZip
PreserveDirectoryRoot = true
}; };
compressor.Compressing += (_, args) => { progress.Report(args.PercentDone); }; compressor.Compressing += (_, args) => { progress.Report(args.PercentDone); };