Files
SamplePreSystem-CS/SamplePre.DAL/SamplePre.DAL.csproj

23 lines
774 B
XML
Raw Permalink Normal View History

2026-04-30 11:34:41 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.0.151" />
<PackageReference Include="MySql.Data" Version="9.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<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.Models\SamplePre.Models.csproj" />
</ItemGroup>
</Project>