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.
 
 
 

39 lines
1.9 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\Version.props" />
  3. <PropertyGroup>
  4. <TargetFramework>netstandard2.1</TargetFramework>
  5. <LangVersion>8.0</LangVersion>
  6. <Copyright>Copyright 2019.</Copyright>
  7. <Authors>SmallChi(Koike)</Authors>
  8. <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
  9. <SignAssembly>false</SignAssembly>
  10. <RepositoryUrl>https://github.com/SmallChi/JT808Gateway</RepositoryUrl>
  11. <PackageProjectUrl>https://github.com/SmallChi/JT808Gateway</PackageProjectUrl>
  12. <licenseUrl>https://github.com/SmallChi/JT808Gateway/blob/master/LICENSE</licenseUrl>
  13. <license>https://github.com/SmallChi/JT808Gateway/blob/master/LICENSE</license>
  14. <PackageLicenseFile>LICENSE</PackageLicenseFile>
  15. <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
  16. <Description>基于Pipeline实现的JT808Gateway的抽象库</Description>
  17. <PackageReleaseNotes>基于Pipeline实现的JT808Gateway的抽象库</PackageReleaseNotes>
  18. <PackageId>JT808.Gateway.Abstractions</PackageId>
  19. <Product>JT808.Gateway.Abstractions</Product>
  20. <Version>$(JT808GatewayPackageVersion)</Version>
  21. </PropertyGroup>
  22. <ItemGroup>
  23. <Protobuf Include="Protos\JT808Gateway.proto" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <PackageReference Include="Google.Protobuf" Version="3.11.2" />
  27. <PackageReference Include="Grpc.Core" Version="2.26.0" />
  28. <PackageReference Include="Grpc.Tools" Version="2.26.0">
  29. <PrivateAssets>all</PrivateAssets>
  30. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  31. </PackageReference>
  32. <PackageReference Include="JT808" Version="2.2.3" />
  33. <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="3.1.0" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <None Include="..\..\LICENSE" Pack="true" PackagePath="" />
  37. </ItemGroup>
  38. </Project>