ExternalAPI_NET8/Web.Core.Repository/Web.Core.Repository.csproj
2026-05-21 17:23:36 +08:00

23 lines
647 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SqlSugarCore" Version="5.1.4.199"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Common\Web.Core.Common.csproj"/>
<ProjectReference Include="..\Web.Core.IRepository\Web.Core.IRepository.csproj"/>
</ItemGroup>
</Project>