forked from jamescourtney/FlatSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBenchmark.csproj
More file actions
26 lines (22 loc) · 1 KB
/
Copy pathBenchmark.csproj
File metadata and controls
26 lines (22 loc) · 1 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\netfx.props" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp2.1;net47</TargetFrameworks>
<DelaySign>false</DelaySign>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\misc\strongname.snk</AssemblyOriginatorKeyFile>
<DefineConstants>$(DefineContants);FLATSHARP_NONVIRTUAL</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.12.1" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="protobuf-net" Version="2.4.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FlatSharp.Unsafe\FlatSharp.Unsafe.csproj" />
<ProjectReference Include="..\FlatSharp\FlatSharp.csproj" />
<ProjectReference Include="..\Google.FlatBuffers\Google.FlatBuffers.csproj" />
</ItemGroup>
</Project>