249
|
1 <Project Sdk="Microsoft.NET.Sdk">
|
260
|
2 <PropertyGroup Condition="'$(OSTYPE)'=='linux'">
|
267
|
3 <TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks>
|
260
|
4 <FrameworkPathOverride Condition="'$(TargetFramework)'=='net46'">/usr/lib/mono/4.5/</FrameworkPathOverride>
|
|
5 </PropertyGroup>
|
|
6
|
|
7 <PropertyGroup Condition="'$(OSTYPE)'=='windows'">
|
|
8 <TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks>
|
|
9 </PropertyGroup>
|
249
|
10
|
0
|
11 <PropertyGroup>
|
249
|
12 <IsPackable>false</IsPackable>
|
75
|
13 </PropertyGroup>
|
259
|
14
|
0
|
15 <ItemGroup>
|
259
|
16 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.0-preview-20180109-01" />
|
249
|
17 <PackageReference Include="xunit" Version="2.3.1" />
|
|
18 <PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
|
259
|
19 <ProjectReference Include="../Implab/Implab.csproj"/>
|
249
|
20 <DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
|
0
|
21 </ItemGroup>
|
260
|
22
|
249
|
23 </Project>
|