Test.csproj 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Nullable>enable</Nullable>
  8. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  11. <WarningLevel>0</WarningLevel>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  14. <WarningLevel>0</WarningLevel>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <PackageReference Include="FluentModbus" />
  18. <PackageReference Include="MiniExcel" />
  19. <PackageReference Include="POmronFinsTCP.Net" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\CommunicationProtocols\FinsTcp\FinsTcp.csproj" />
  23. <ProjectReference Include="..\CommunicationProtocols\ModBusTcp\ModBusTcp.csproj" />
  24. <ProjectReference Include="..\CommunicationProtocols\ProtocalGeneral\ProtocalGeneral.csproj" />
  25. <ProjectReference Include="..\Communicators\RTCommunicator\RTCommunicatorTLV\RTCommunicatorTLV.csproj" />
  26. <ProjectReference Include="..\DataBase\ORM\ORM.csproj" />
  27. <ProjectReference Include="..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
  28. <ProjectReference Include="..\ModelData\HardwareData\HardwareData.csproj" />
  29. <ProjectReference Include="..\Universal\Universal.csproj" />
  30. </ItemGroup>
  31. </Project>