- 删除Initial迁移代码及其对应模型建表定义 - 移除相关的SQL迁移脚本,包括Initial和OpenIddict表的创建语句 - 清理所有与Initial迁移和OpenIddict相关的表结构和索引定义 - 该变更旨在重新规划数据库迁移结构和初始化过程
23 lines
838 B
XML
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>
|