ModbusSlaveSim.csproj 698 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\Tools\ModbusSlaveSim</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <Nullable>enable</Nullable>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. <UseWPF>true</UseWPF>
  10. <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Prism.DryIoc" />
  14. <PackageReference Include="CommunityToolkit.Mvvm" />
  15. <PackageReference Include="NModbus" />
  16. </ItemGroup>
  17. </Project>