上传源代码版本

This commit is contained in:
Im-Jenisson
2026-06-01 16:30:29 +08:00
commit b2a9b7d3c2
462 changed files with 104365 additions and 0 deletions

25
Bak/DAL/DAL.csproj Normal file
View File

@@ -0,0 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="interfaces\**" />
<Compile Remove="repositories\**" />
<EmbeddedResource Remove="interfaces\**" />
<EmbeddedResource Remove="repositories\**" />
<None Remove="interfaces\**" />
<None Remove="repositories\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MDL\MDL.csproj" />
<ProjectReference Include="..\DB\DB.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MySql.Data" Version="8.0.33" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="SqlSugar" Version="5.1.4.207" />
</ItemGroup>
</Project>