2019-06-22 18:43:30 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-06-12 21:56:55 +02:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2019-06-22 18:43:30 -04:00
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
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-06-12 21:56:55 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
|
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="1.3.2" />
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="1.3.2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-07-04 22:05:37 +02:00
|
|
|
|
<ProjectReference Include="..\Capnp.Net.Runtime\Capnp.Net.Runtime.Std20.csproj" />
|
2019-06-12 21:56:55 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|