Implab.ServiceHost.Test.csproj
29 lines
| 1.1 KiB
| text/plain
|
TextLexer
/ Implab.ServiceHost.Test / Implab.ServiceHost.Test.csproj
cin
|
r289 | <Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup Condition="'$(OSTYPE)'=='linux'"> | ||||
<TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks> | ||||
<FrameworkPathOverride Condition="'$(TargetFramework)'=='net46'">/usr/lib/mono/4.5/</FrameworkPathOverride> | ||||
</PropertyGroup> | ||||
<PropertyGroup Condition="'$(OSTYPE)'=='windows'"> | ||||
<TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks> | ||||
</PropertyGroup> | ||||
<PropertyGroup> | ||||
<IsPackable>false</IsPackable> | ||||
</PropertyGroup> | ||||
<ItemGroup> | ||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.0-preview-20180109-01" /> | ||||
<PackageReference Include="System.Reactive" Version="4.0.0" /> | ||||
<PackageReference Include="xunit" Version="2.3.1" /> | ||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | ||||
<ProjectReference Include="../Implab/Implab.csproj"/> | ||||
<ProjectReference Include="../Implab.ServiceHost/Implab.ServiceHost.csproj"/> | ||||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | ||||
</ItemGroup> | ||||
<ItemGroup> | ||||
<None Include="data/**/*.*" CopyToOutputDirectory="PreserveNewest" /> | ||||
</ItemGroup> | ||||
</Project> | ||||