fengling-platform/Fengling.Platform.Infrastructure/Fengling.Platform.Infrastructure.csproj
movingsam 396cb4010c
Some checks failed
Publish NuGet Packages / build (push) Failing after 20s
Publish NuGet Package / publish (push) Failing after 22s
refactor(migrations): 删除初始数据库迁移及OpenIddict表相关脚本
- 删除Initial迁移代码及其对应模型建表定义
- 移除相关的SQL迁移脚本,包括Initial和OpenIddict表的创建语句
- 清理所有与Initial迁移和OpenIddict相关的表结构和索引定义
- 该变更旨在重新规划数据库迁移结构和初始化过程
2026-03-01 00:21:35 +08:00

23 lines
838 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
<PackageReference Include="Microsoft.EntityFrameworkCore" />
<PackageReference Include="NetCorePal.Extensions.Repository.EntityFrameworkCore.Snowflake" />
<PackageReference Include="NetCorePal.Extensions.Repository.EntityFrameworkCore" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Fengling.Platform.Domain\Fengling.Platform.Domain.csproj" />
</ItemGroup>
</Project>