0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-12 16:50:45 -05:00
patcher/Patcher/PatcherUtils/PatcherUtils.csproj
DrakiaXYZ 16758a32d3 Switch from xdelta to hdiff
- Strip out xdelta3 and associated helpers/libs
- Add hdiffz.exe and target it for patch creation
- Add reference to SharpHDiffPatch.Core and utilize it for patch application

Thanks @sheepy for finding HDiffPatch for us!
Improves patch size and increases patching speed
2024-12-27 18:36:40 -08:00

26 lines
687 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AssemblyVersion>2.15.3</AssemblyVersion>
<FileVersion>2.15.3</FileVersion>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\7z.dll" />
<EmbeddedResource Include="Resources\hdiffz.exe" />
</ItemGroup>
<ItemGroup>
<Reference Include="Aki.Common">
<HintPath>..\PatchGenerator\References\Aki.Common.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="SharpHDiffPatch.Core" Version="2.2.8" />
<PackageReference Include="Squid-Box.SevenZipSharp" Version="1.6.2.24" />
</ItemGroup>
</Project>