| <Project Sdk="Microsoft.NET.Sdk"> |
| |
| <PropertyGroup> |
| <TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp3.1;net5.0;net6.0</TargetFrameworks> |
| <Version>2.2.0</Version> |
| <AssemblyVersion>$(Version)</AssemblyVersion> |
| <FileVersion>$(Version)</FileVersion> |
| <Authors>ApachePulsar,DanskeCommodities,dblank</Authors> |
| <Company>Apache Software Foundation</Company> |
| <Copyright>$(Company)</Copyright> |
| <Title>DotPulsar</Title> |
| <PackageTags>Apache;Pulsar</PackageTags> |
| <PackageIcon>PackageIcon.png</PackageIcon> |
| <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
| <PackageReleaseNotes>Please refer to CHANGELOG.md for details</PackageReleaseNotes> |
| <Description>The official .NET client library for Apache Pulsar</Description> |
| <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| <IncludeSymbols>true</IncludeSymbols> |
| <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| <NoWarn>1591</NoWarn> |
| </PropertyGroup> |
| |
| <ItemGroup> |
| <PackageReference Include="HashDepot" Version="2.0.3" /> |
| <PackageReference Include="Microsoft.Extensions.ObjectPool" Version="6.0.3" /> |
| <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> |
| <PackageReference Include="protobuf-net" Version="3.0.101" /> |
| <PackageReference Include="System.IO.Pipelines" Version="6.0.2" /> |
| </ItemGroup> |
| |
| <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
| <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" /> |
| <PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" /> |
| <PackageReference Include="System.Diagnostics.DiagnosticSource" Version="6.0.0" /> |
| </ItemGroup> |
| |
| <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'"> |
| <PackageReference Include="System.Diagnostics.DiagnosticSource" Version="6.0.0" /> |
| </ItemGroup> |
| |
| <ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'"> |
| <PackageReference Include="System.Diagnostics.DiagnosticSource" Version="6.0.0" /> |
| </ItemGroup> |
| |
| <ItemGroup Condition="'$(TargetFramework)' == 'net5.0'"> |
| <PackageReference Include="System.Diagnostics.DiagnosticSource" Version="6.0.0" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <None Include="PackageIcon.png" Pack="true" PackagePath="/" Visible="False" /> |
| </ItemGroup> |
| |
| </Project> |