mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
27 lines
803 B
XML
27 lines
803 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<LangVersion>7.1</LangVersion>
|
|
</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>
|
|
<ProjectReference Include="..\Capnp.Net.Runtime\Capnp.Net.Runtime.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|