123456789101112131415161718192021222324252627 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0</TargetFramework>
- <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="FluentModbus" />
- <PackageReference Include="MiniExcel" />
- <PackageReference Include="POmronFinsTCP.Net" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Communicators\RTCommunicator\RTCommunicatorTLV\RTCommunicatorTLV.csproj" />
- <ProjectReference Include="..\DataBase\ORM\ORM.csproj" />
- <ProjectReference Include="..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
- <ProjectReference Include="..\ModelData\HardwareData\HardwareData.csproj" />
- <ProjectReference Include="..\Universal\Universal.csproj" />
- </ItemGroup>
- </Project>
|