forked from Alois-xx/SerializerTests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSerializerTests.csproj
More file actions
66 lines (61 loc) · 2.38 KB
/
SerializerTests.csproj
File metadata and controls
66 lines (61 loc) · 2.38 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<!--
<TargetFrameworks>netcoreapp2.0;net471</TargetFrameworks>
-->
<TargetFrameworks>netcoreapp2;net471</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<RuntimeIdentifiers>win7-x64</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
<Compile Remove="packages\**" />
<None Remove="packages\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="SerializationPerf.csv" />
<None Remove="Serializers\flatc.exe" />
<None Remove="Startup_NGen.csv" />
<None Remove="Startup_NoNGen.csv" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net471' ">
<Content Include="Ngen.cmd">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="RunTests.cmd">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2' ">
<Content Include="RunTests_Core.cmd">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="fastJSON" Version="2.1.29" />
<PackageReference Include="GroBuf" Version="1.3.0" />
<PackageReference Include="Hyperion" Version="0.9.8" />
<PackageReference Include="Jil" Version="2.15.4" />
<PackageReference Include="MessagePack" Version="1.7.3.4" />
<PackageReference Include="MsgPack.Cli" Version="0.9.2" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="protobuf-net" Version="2.3.7" />
<PackageReference Include="Salar.Bois" Version="2.2.2" />
<PackageReference Include="ServiceStack.Text" Version="5.1.0" />
<PackageReference Include="Utf8Json" Version="1.3.7" />
<PackageReference Include="Wire" Version="0.8.2" />
<PackageReference Include="ZeroFormatter" Version="1.6.4" />
<PackageReference Include="NFX" Version="3.5.0.5" />
</ItemGroup>
<ItemGroup>
<Reference Include="FlatBuffers">
<HintPath>ExternalDependencies\FlatBuffers.dll</HintPath>
</Reference>
<Reference Include="Mono.Reflection">
<HintPath>ExternalDependencies\Mono.Reflection.dll</HintPath>
</Reference>
</ItemGroup>
</Project>