您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

47 行
2.1 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <Compile Remove="Jobs\CallGrpcClientJob.cs" />
  8. </ItemGroup>
  9. <ItemGroup>
  10. <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.7" />
  11. <PackageReference Include="Microsoft.Extensions.Hosting" Version="3.1.7" />
  12. <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.8" />
  13. <PackageReference Include="NLog.Extensions.Logging" Version="1.6.5" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\..\JT808.Gateway.Client\JT808.Gateway.Client.csproj" />
  17. <ProjectReference Include="..\..\JT808.Gateway.Kafka\JT808.Gateway.Kafka.csproj" />
  18. <ProjectReference Include="..\..\JT808.Gateway.Services\JT808.Gateway.MsgIdHandler\JT808.Gateway.MsgIdHandler.csproj" />
  19. <ProjectReference Include="..\..\JT808.Gateway.Services\JT808.Gateway.MsgLogging\JT808.Gateway.MsgLogging.csproj" />
  20. <ProjectReference Include="..\..\JT808.Gateway.Services\JT808.Gateway.ReplyMessage\JT808.Gateway.ReplyMessage.csproj" />
  21. <ProjectReference Include="..\..\JT808.Gateway.Services\JT808.Gateway.SessionNotice\JT808.Gateway.SessionNotice.csproj" />
  22. <ProjectReference Include="..\..\JT808.Gateway.Services\JT808.Gateway.Traffic\JT808.Gateway.Traffic.csproj" />
  23. <ProjectReference Include="..\..\JT808.Gateway.Services\JT808.Gateway.Transmit\JT808.Gateway.Transmit.csproj" />
  24. <ProjectReference Include="..\..\JT808.Gateway\JT808.Gateway.csproj" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <None Update="appsettings.json">
  28. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  29. </None>
  30. <None Update="Configs\nlog.Unix.config">
  31. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  32. </None>
  33. <None Update="Configs\nlog.Win32NT.config">
  34. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  35. </None>
  36. <None Update="Configs\NLog.xsd">
  37. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  38. </None>
  39. </ItemGroup>
  40. </Project>