LMS.service/LMS.DAO/LMS.DAO.csproj

23 lines
807 B
XML
Raw Normal View History

2024-10-13 17:04:47 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
2024-10-13 17:04:47 +08:00
<PackageReference Include="OneOf" Version="3.0.271" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LMS.Common\LMS.Common.csproj" />
<ProjectReference Include="..\LMS.Repository\LMS.Repository.csproj" />
<ProjectReference Include="..\LMS.Tools\LMS.Tools.csproj" />
</ItemGroup>
</Project>