| <Project Sdk="Microsoft.NET.Sdk"> |
| |
| <PropertyGroup> |
| <TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0;net9.0</TargetFrameworks> |
| <LangVersion>latest</LangVersion> |
| <ImplicitUsings>enable</ImplicitUsings> |
| <Nullable>enable</Nullable> |
| <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> |
| <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| <NoWarn>1591</NoWarn> |
| </PropertyGroup> |
| |
| <ItemGroup> |
| <PackageReference Include="HashDepot" Version="2.0.3" /> |
| <PackageReference Include="Microsoft.Extensions.ObjectPool" Version="9.0.0" /> |
| <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" /> |
| <PackageReference Include="protobuf-net" Version="3.2.45" /> |
| </ItemGroup> |
| |
| <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
| <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.0" /> |
| <PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" /> |
| <PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.0" /> |
| <PackageReference Include="System.IO.Pipelines" Version="8.0.0" /> |
| </ItemGroup> |
| |
| <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'"> |
| <PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.0" /> |
| <PackageReference Include="System.IO.Pipelines" Version="8.0.0" /> |
| </ItemGroup> |
| |
| <ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> |
| <PackageReference Include="System.IO.Pipelines" Version="8.0.0" /> |
| </ItemGroup> |
| |
| <ItemGroup Condition="'$(TargetFramework)' == 'net7.0'"> |
| <PackageReference Include="System.IO.Pipelines" Version="8.0.0" /> |
| </ItemGroup> |
| |
| <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
| <PackageReference Include="System.IO.Pipelines" Version="9.0.0" /> |
| </ItemGroup> |
| |
| <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'"> |
| <PackageReference Include="System.IO.Pipelines" Version="9.0.0" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <None Include="PackageIcon.png" Pack="true" PackagePath="/" Visible="False" /> |
| </ItemGroup> |
| |
| </Project> |