ModbusMasterSlaveSim.csproj 651 B

123456789101112131415161718
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\Tools\ModbusMasterSlaveSim</OutputPath>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Nullable>enable</Nullable>
  8. <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\..\CommunicationProtocols\ModbusSimulationProtocol\ModbusSimulationProtocol.csproj" />
  12. <ProjectReference Include="..\..\CommunicationProtocols\ModBusTcp\ModBusTcp.csproj" />
  13. </ItemGroup>
  14. </Project>