mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +01:00
34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0;netcoreapp2.1</TargetFrameworks>
|
|
<RootNamespace>Capnp</RootNamespace>
|
|
<LangVersion>7.2</LangVersion>
|
|
<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>
|
|
<Version>1.0-local$([System.DateTime]::UtcNow.ToString(yyMMddHHmm))</Version>
|
|
<Configurations>Debug;Release</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|