123456789101112131415161718 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0</TargetFramework>
- <OutputPath>$(SolutionDir)Binary\Tools\ModbusMasterSlaveSim</OutputPath>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\CommunicationProtocols\ModbusSimulationProtocol\ModbusSimulationProtocol.csproj" />
- <ProjectReference Include="..\..\CommunicationProtocols\ModBusTcp\ModBusTcp.csproj" />
- </ItemGroup>
- </Project>
|