wms.console.csproj 648 B

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Apache.NMS.ActiveMQ.NetCore" Version="1.7.3" />
  10. <PackageReference Include="Serilog" Version="2.12.0" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\wms.util\wms.util.csproj" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <None Update="appsettings.json">
  17. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  18. </None>
  19. </ItemGroup>
  20. </Project>