mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
45 lines
1.8 KiB
XML
45 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
|
|
<RootNamespace>Capnp</RootNamespace>
|
|
<LangVersion>8.0</LangVersion>
|
|
<Nullable>Enable</Nullable>
|
|
<WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors>
|
|
<AssemblyName>Capnp.Net.Runtime</AssemblyName>
|
|
<PackageId>Capnp.Net.Runtime</PackageId>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageOutputPath>..\bin\$(Configuration)</PackageOutputPath>
|
|
<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>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<DefineConstants></DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
|
|
<DebugType>portable</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|