Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

41 linhas
2.0 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\Version.props" />
  3. <PropertyGroup>
  4. <TargetFrameworks>netstandard2.1;net5;</TargetFrameworks>
  5. <LangVersion>9.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. <DocumentationFile>JT808.Gateway.Abstractions.xml</DocumentationFile>
  22. </PropertyGroup>
  23. <ItemGroup>
  24. <Compile Remove="Enums\JT808UseType.cs" />
  25. <Compile Remove="IJT808NormalGatewayBuilder.cs" />
  26. <Compile Remove="IJT808QueueGatewayBuilder.cs" />
  27. <Compile Remove="JT808QueueReplyMessageHandler.cs" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <PackageReference Include="JT808" Version="2.3.0" />
  31. <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="5.0.0" />
  32. <PackageReference Include="Microsoft.Extensions.Options" Version="5.0.0" />
  33. <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
  34. <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="5.0.0" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <None Include="..\..\LICENSE" Pack="true" PackagePath="" />
  38. </ItemGroup>
  39. </Project>