44 lines
1.6 KiB
XML
Raw Normal View History

2019-06-22 18:43:30 -04:00
<Project Sdk="Microsoft.NET.Sdk">
2019-06-12 21:56:55 +02:00
<PropertyGroup>
2022-02-17 00:44:35 +01:00
<TargetFrameworks>netcoreapp3.1;net48</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>
<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>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp2.1|AnyCPU'">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
2019-06-12 21:56:55 +02:00
<ItemGroup>
2020-04-26 19:09:58 +02:00
<PackageReference Include="coverlet.collector" Version="1.2.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2022-02-17 00:44:35 +01:00
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
2019-06-12 21:56:55 +02:00
<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" />
2020-03-07 19:37:30 +01:00
<PackageReference Include="System.IO.Pipelines" Version="4.7.0" />
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.10.0" />
2019-06-12 21:56:55 +02:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Capnp.Net.Runtime\Capnp.Net.Runtime.csproj" />
2019-06-12 21:56:55 +02:00
</ItemGroup>
</Project>