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.2 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <Nullable>disable</Nullable>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <UseWPF>true</UseWPF>
  8. <ApplicationIcon>ModbusRTU_64x64.ico</ApplicationIcon>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <Content Include="ModbusRTU_64x64.ico">
  12. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  13. </Content>
  14. </ItemGroup>
  15. <ItemGroup>
  16. <PackageReference Include="MaterialDesignThemes" Version="5.2.1" />
  17. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.27" />
  18. <PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.7" />
  19. <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.7" />
  20. <PackageReference Include="NModbus4" Version="2.1.0" />
  21. <PackageReference Include="Prism.DryIoc" Version="8.1.97" />
  22. <PackageReference Include="System.IO.Ports" Version="9.0.7" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <None Update="appsettings.json">
  26. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  27. </None>
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Folder Include="bin\Debug\net8.0-windows\" />
  31. </ItemGroup>
  32. </Project>