ModBusTcp.csproj 442 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="FluentModbus" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\ProtocalGeneral\ProtocalGeneral.csproj" />
  13. </ItemGroup>
  14. </Project>