Test.csproj 953 B

123456789101112131415161718192021222324252627
  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. <ItemGroup>
  11. <PackageReference Include="FluentModbus" />
  12. <PackageReference Include="MiniExcel" />
  13. <PackageReference Include="POmronFinsTCP.Net" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\Communicators\RTCommunicator\RTCommunicatorTLV\RTCommunicatorTLV.csproj" />
  17. <ProjectReference Include="..\DataBase\ORM\ORM.csproj" />
  18. <ProjectReference Include="..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
  19. <ProjectReference Include="..\ModelData\HardwareData\HardwareData.csproj" />
  20. <ProjectReference Include="..\Universal\Universal.csproj" />
  21. </ItemGroup>
  22. </Project>