ModbusMasterSlaveSim.csproj 560 B

1234567891011121314151617
  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. </ItemGroup>
  13. </Project>