36 lines
1.4 KiB
XML
Raw Normal View History

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-12-30 19:27:11 +01:00
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackAsTool>true</PackAsTool>
<ToolCommandName>capnpc-csharp</ToolCommandName>
<PackageOutputPath>./nupkg/capnpc-csharp</PackageOutputPath>
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-12-29 22:47:16 +01:00
<Version>1.3.0</Version>
2020-01-02 19:37:19 +01:00
<FileVersion>1.3.0.0</FileVersion>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
2019-09-15 19:09:43 +02:00
<Configurations>Debug;Release</Configurations>
2019-06-12 21:56:55 +02:00
</PropertyGroup>
<ItemGroup>
<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>
<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>