| 12345678910111213141516171819 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFramework>net8.0</TargetFramework>    <ImplicitUsings>enable</ImplicitUsings>    <Nullable>enable</Nullable>    <AllowUnsafeBlocks>True</AllowUnsafeBlocks>  </PropertyGroup>  <ItemGroup>    <PackageReference Include="FluentModbus" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\ProtocalGeneral\ProtocalGeneral.csproj" />  </ItemGroup></Project>
 |