You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
681 B

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.1</TargetFramework>
  4. <AssemblyName>DotNetCore.CAP.Kafka</AssemblyName>
  5. <PackageTags>$(PackageTags);Kafka</PackageTags>
  6. </PropertyGroup>
  7. <PropertyGroup>
  8. <WarningsAsErrors>NU1605;NU1701</WarningsAsErrors>
  9. <NoWarn>NU1701;CS1591</NoWarn>
  10. <DocumentationFile>bin\$(Configuration)\netstandard2.1\DotNetCore.CAP.Kafka.xml</DocumentationFile>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Confluent.Kafka" Version="1.5.2" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\DotNetCore.CAP\DotNetCore.CAP.csproj" />
  17. </ItemGroup>
  18. </Project>