-
Notifications
You must be signed in to change notification settings - Fork 3
/
SerializationBenchmak.csproj
27 lines (24 loc) · 1.04 KB
/
SerializationBenchmak.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
<PackageReference Include="Google.Protobuf" Version="3.14.0" />
<PackageReference Include="Google.Protobuf.Tools" Version="3.14.0" />
<PackageReference Include="Grpc.Tools" Version="2.34.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="K4os.Compression.LZ4" Version="1.2.6" />
<PackageReference Include="MessagePack" Version="2.2.85" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="protobuf-net" Version="3.0.73" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="TestTypes.proto" />
</ItemGroup>
</Project>