2019-07-08 22:47:43 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-09-25 14:49:11 +02:00
|
|
|
|
<TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp3.1</TargetFrameworks>
|
2019-07-08 22:47:43 +02:00
|
|
|
|
<RootNamespace>Capnp</RootNamespace>
|
2020-01-11 17:21:31 +01:00
|
|
|
|
<LangVersion>8.0</LangVersion>
|
2020-01-11 17:56:12 +01:00
|
|
|
|
<Nullable>Enable</Nullable>
|
|
|
|
|
<WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors>
|
2019-07-08 22:47:43 +02:00
|
|
|
|
<AssemblyName>Capnp.Net.Runtime</AssemblyName>
|
|
|
|
|
<PackageId>Capnp.Net.Runtime</PackageId>
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
2019-09-15 19:09:43 +02:00
|
|
|
|
<PackageOutputPath>..\bin\$(Configuration)</PackageOutputPath>
|
2019-07-08 22:47:43 +02:00
|
|
|
|
<Authors>Christian Köllner and contributors</Authors>
|
|
|
|
|
<Description>A Cap'n Proto implementation for .NET Standard & Core</Description>
|
|
|
|
|
<Product>capnproto-dotnetcore</Product>
|
|
|
|
|
<Copyright>Christian Köllner and contributors</Copyright>
|
|
|
|
|
<PackageLicenseFile></PackageLicenseFile>
|
|
|
|
|
<PackageProjectUrl>https://github.com/c80k/capnproto-dotnetcore</PackageProjectUrl>
|
|
|
|
|
<RepositoryUrl>https://github.com/c80k/capnproto-dotnetcore</RepositoryUrl>
|
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
<RepositoryType>Git</RepositoryType>
|
|
|
|
|
<PackageTags>capnp "Cap'n Proto" RPC serialization cerealization</PackageTags>
|
2019-09-15 19:09:43 +02:00
|
|
|
|
<Configurations>Debug;Release</Configurations>
|
2019-12-11 21:09:43 +01:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2020-04-21 07:49:37 +02:00
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
2019-07-08 22:47:43 +02:00
|
|
|
|
</PropertyGroup>
|
2020-04-21 07:49:37 +02:00
|
|
|
|
|
2019-07-08 22:47:43 +02:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
2020-02-01 14:44:22 +01:00
|
|
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
2019-12-30 18:47:33 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-02-01 14:44:22 +01:00
|
|
|
|
<PropertyGroup>
|
2020-04-21 21:02:12 +02:00
|
|
|
|
<DefineConstants></DefineConstants>
|
2019-07-08 22:47:43 +02:00
|
|
|
|
</PropertyGroup>
|
2019-12-11 21:09:43 +01:00
|
|
|
|
|
2020-02-22 16:01:04 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
|
2020-02-22 21:31:59 +01:00
|
|
|
|
<DebugType>portable</DebugType>
|
2020-02-22 16:01:04 +01:00
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-07-08 22:47:43 +02:00
|
|
|
|
<ItemGroup>
|
2021-09-25 15:29:09 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
|
2020-04-21 18:54:16 +02:00
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
|
2019-07-08 22:47:43 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|