2019-06-12 21:56:55 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
|
|
<RootNamespace>CapnpC</RootNamespace>
|
|
|
|
<LangVersion>7.1</LangVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<OutputPath></OutputPath>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.10.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
|
|
|
|
</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>
|