2019-07-11 21:44:42 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-06-12 21:56:55 +02:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
|
|
|
<RootNamespace>CapnpC</RootNamespace>
|
|
|
|
|
<LangVersion>7.1</LangVersion>
|
2019-08-01 19:09:48 +02:00
|
|
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
2019-07-11 21:44:42 +02:00
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
<Authors>Christian Köllner and contributors</Authors>
|
|
|
|
|
<Description>Cap'n Proto C# code generator backend</Description>
|
|
|
|
|
<Copyright>Christian Köllner and contributors</Copyright>
|
|
|
|
|
<PackageProjectUrl>https://github.com/c80k/capnproto-dotnetcore</PackageProjectUrl>
|
|
|
|
|
<RepositoryType>Git</RepositoryType>
|
|
|
|
|
<PackageTags>capnp capnpc RPC serialization cerealization</PackageTags>
|
2019-07-14 15:28:50 +02:00
|
|
|
|
<Version>1.0.0</Version>
|
2019-06-12 21:56:55 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<OutputPath></OutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-08-31 18:42:03 +02:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.2.1" />
|
2019-06-12 21:56:55 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-07-08 22:47:43 +02:00
|
|
|
|
<ProjectReference Include="..\Capnp.Net.Runtime\Capnp.Net.Runtime.csproj" />
|
2019-09-10 22:48:25 +02:00
|
|
|
|
<ProjectReference Include="..\CapnpC.CSharp.Generator\CapnpC.CSharp.Generator.csproj" />
|
2019-06-12 21:56:55 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|