-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSerialization-Tests.csproj
More file actions
36 lines (29 loc) · 1.23 KB
/
Serialization-Tests.csproj
File metadata and controls
36 lines (29 loc) · 1.23 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
<AssemblyName>Serialization-Tests</AssemblyName>
<RootNamespace>SerializationTests</RootNamespace>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="NUnit" Version="3.10.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.10.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Collections.Immutable" Version="1.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Serialization\Serialization.csproj" />
</ItemGroup>
<PropertyGroup>
<IsNetCore>false</IsNetCore>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
<IsNetCore>true</IsNetCore>
<DefineConstants>$(DefineConstants);DNCORE;NETSTANDARD;NETCORE</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="!$(IsNetCore)">
<Reference Include="System.Windows.Forms" />
</ItemGroup>
</Project>