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