23 lines
787 B
XML
23 lines
787 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="S7netplus" Version="0.20.0" />
|
|
<PackageReference Include="SqlSugar" Version="5.1.4.207" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SamplePre.Common\SamplePre.Common.csproj" />
|
|
<ProjectReference Include="..\SamplePre.Communication\SamplePre.Communication.csproj" />
|
|
<ProjectReference Include="..\SamplePre.DAL\SamplePre.DAL.csproj" />
|
|
<ProjectReference Include="..\SamplePre.Models\SamplePre.Models.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|