260
|
1 <Project Sdk="Microsoft.NET.Sdk">
|
|
2 <PropertyGroup Condition="'$(OSTYPE)'=='linux'">
|
|
3 <TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks>
|
|
4 <FrameworkPathOverride Condition="'$(TargetFramework)'=='net46'">/usr/lib/mono/4.6-api/</FrameworkPathOverride>
|
229
|
5 </PropertyGroup>
|
260
|
6
|
|
7 <PropertyGroup Condition="'$(OSTYPE)'=='windows'">
|
|
8 <TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks>
|
229
|
9 </PropertyGroup>
|
260
|
10
|
|
11 <PropertyGroup>
|
|
12 <OutputType>Exe</OutputType>
|
|
13 <IsPackable>false</IsPackable>
|
229
|
14 </PropertyGroup>
|
260
|
15
|
229
|
16 <ItemGroup>
|
260
|
17 <ProjectReference Include="../Implab/Implab.csproj"/>
|
229
|
18 </ItemGroup>
|
260
|
19
|
|
20 </Project>
|