ModbusSlaveSim.csproj 655 B

12345678910111213141516171819
  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. </ItemGroup>
  16. </Project>