- 删除Initial迁移代码及其对应模型建表定义 - 移除相关的SQL迁移脚本,包括Initial和OpenIddict表的创建语句 - 清理所有与Initial迁移和OpenIddict相关的表结构和索引定义 - 该变更旨在重新规划数据库迁移结构和初始化过程
15 lines
901 B
XML
15 lines
901 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
<NetCorePalVersion>3.2.1</NetCorePalVersion>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.0" />
|
|
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="10.0.0" />
|
|
<PackageVersion Include="NetCorePal.Extensions.Repository.EntityFrameworkCore.Snowflake" Version="3.2.1" />
|
|
<PackageVersion Include="NetCorePal.Extensions.Repository.EntityFrameworkCore" Version="$(NetCorePalVersion)" />
|
|
<PackageVersion Include="NetCorePal.Extensions.Domain.Abstractions" Version="$(NetCorePalVersion)" />
|
|
<PackageVersion Include="NetCorePal.Extensions.Primitives" Version="$(NetCorePalVersion)" />
|
|
<PackageVersion Include="OpenIddict.EntityFrameworkCore" Version="7.2.0" />
|
|
</ItemGroup>
|
|
</Project> |