Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

38 lignes
1.8 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. <RepositoryUrl>https://github.com/SmallChi/JT808Gateway</RepositoryUrl>
  9. <PackageProjectUrl>https://github.com/SmallChi/JT808Gateway</PackageProjectUrl>
  10. <licenseUrl>https://github.com/SmallChi/JT808Gateway/blob/master/LICENSE</licenseUrl>
  11. <license>https://github.com/SmallChi/JT808Gateway/blob/master/LICENSE</license>
  12. <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
  13. <Version>$(JT808GatewayPackageVersion)</Version>
  14. <SignAssembly>false</SignAssembly>
  15. <PackageLicenseFile>LICENSE</PackageLicenseFile>
  16. <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
  17. <PackageId>JT808.Gateway.WebApiClientTool</PackageId>
  18. <Product>JT808.Gateway.WebApiClientTool</Product>
  19. <Description>基于Pipeline的WebApiClient客户端调用工具</Description>
  20. <PackageReleaseNotes>基于Pipeline的WebApiClient客户端调用工具</PackageReleaseNotes>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  23. <DocumentationFile>JT808.Gateway.WebApiClientTool.xml</DocumentationFile>
  24. </PropertyGroup>
  25. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  26. <DocumentationFile>JT808.Gateway.WebApiClientTool.xml</DocumentationFile>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <None Include="..\..\LICENSE" Pack="true" PackagePath="" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <PackageReference Include="Microsoft.Extensions.Http" Version="3.1.7" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <ProjectReference Include="..\JT808.Gateway.Abstractions\JT808.Gateway.Abstractions.csproj" />
  36. </ItemGroup>
  37. </Project>