<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFrameworks>netcoreapp2.1;net471</TargetFrameworks> <IsPackable>false</IsPackable> <LangVersion>7.1</LangVersion> <OutputType>Library</OutputType> <Configurations>Debug;Release</Configurations> <RootNamespace>Capnp.Net.Runtime.Tests</RootNamespace> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <DefineConstants>DEBUG;TRACE</DefineConstants> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp2.1|AnyCPU'"> <DefineConstants>TRACE</DefineConstants> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.2.0" /> <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" /> <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" /> <PackageReference Include="System.IO.Pipelines" Version="4.7.0" /> <PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.10.0" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Capnp.Net.Runtime\Capnp.Net.Runtime.csproj" /> </ItemGroup> </Project>