2019-06-22 18:43:30 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-06-12 21:56:55 +02:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-03-21 13:27:46 +01:00
|
|
|
|
<TargetFrameworks>netcoreapp2.1;net471</TargetFrameworks>
|
2019-06-12 21:56:55 +02:00
|
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
|
|
|
|
<LangVersion>7.1</LangVersion>
|
2019-06-22 18:43:30 -04:00
|
|
|
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
2019-09-15 19:09:43 +02:00
|
|
|
|
|
|
|
|
|
<Configurations>Debug;Release</Configurations>
|
2020-02-26 21:08:54 +01:00
|
|
|
|
|
|
|
|
|
<RootNamespace>Capnp.Net.Runtime.Tests</RootNamespace>
|
2019-06-12 21:56:55 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-09-15 19:09:43 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.2.0" />
|
2019-06-12 21:56:55 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" />
|
2019-08-31 18:42:03 +02:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
|
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
|
2020-03-07 19:37:30 +01:00
|
|
|
|
<PackageReference Include="System.IO.Pipelines" Version="4.7.0" />
|
2019-10-04 23:59:58 +02:00
|
|
|
|
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.10.0" />
|
2019-06-12 21:56:55 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-07-08 22:47:43 +02:00
|
|
|
|
<ProjectReference Include="..\Capnp.Net.Runtime\Capnp.Net.Runtime.csproj" />
|
2019-06-12 21:56:55 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|