-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathSerializationBenchmarks.csproj
More file actions
48 lines (43 loc) · 2.22 KB
/
SerializationBenchmarks.csproj
File metadata and controls
48 lines (43 loc) · 2.22 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<DefineConstants>$(DefineConstants);DATASET_SMALL;</DefineConstants>
<DefineConstants>$(DefineConstants);DATASET_MEDIUM;</DefineConstants>
<DefineConstants>$(DefineConstants);DATASET_LARGE;</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AvroConvert" Version="3.4.10" />
<PackageReference Include="bebop" Version="3.0.14" />
<PackageReference Include="bebop-tools" Version="3.0.14">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
<PackageReference Include="Bogus" Version="35.6.1" />
<PackageReference Include="Dahomey.Cbor" Version="1.24.3" />
<PackageReference Include="GroBuf" Version="1.9.2" />
<PackageReference Include="Hyperion" Version="0.12.2" />
<PackageReference Include="Jil" Version="2.17.0" />
<PackageReference Include="MemoryPack" Version="1.21.3" />
<PackageReference Include="MessagePack" Version="2.5.192" />
<PackageReference Include="MongoDB.Bson" Version="2.30.0" />
<PackageReference Include="MsgPack.Cli" Version="1.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="protobuf-net" Version="3.2.45" />
<PackageReference Include="ServiceStack.Text" Version="10.0.0" />
<PackageReference Include="SpanJson" Version="4.2.1" />
<PackageReference Include="Utf8Json" Version="1.3.7" />
</ItemGroup>
<ItemGroup>
<None Remove="Data*.json" />
<Content Include="Data*.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Bebop Include="**/*.bop" OutputDir="./Models" OutputFile="Bebop.Models.g.cs" Namespace="SerializationBenchmarks.Models.Bebop" />
</ItemGroup>
</Project>