6d08fd4a6c
Add standalone CLI tool to convert zstd-compressed JSON cache files to zstd-compressed Protocol Buffers format for faster deserialization.
16 lines
420 B
XML
16 lines
420 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ZstdSharp.Port" Version="0.8.1" />
|
|
<PackageReference Include="protobuf-net-data" Version="4.1.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|