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>
|
2021-09-25 14:49:11 +02:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2019-06-12 21:56:55 +02:00
|
|
|
|
<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>
|
2020-01-02 22:13:11 +01:00
|
|
|
|
<PackageOutputPath>./nupkg</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-09-15 19:09:43 +02:00
|
|
|
|
<Configurations>Debug;Release</Configurations>
|
2020-04-25 15:52:58 +02:00
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
2019-06-12 21:56:55 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-09-25 15:29:09 +02:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.4.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
|
2020-04-25 15:52:58 +02:00
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
|
2019-06-12 21:56:55 +02:00
|
|
|
|
</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>
|