Is there an existing issue for this?
Description
Title: ABP CLI 10.5.0-rc.4 generates project with wrong EF Core Design dependency
Environment:
- ABP CLI: 10.5.0-rc.4
- .NET SDK: 10.0.301
- dotnet-ef: 10.0.9
- OS: Windows 11
- Database: SQL Server
Steps to reproduce:
-
Install ABP CLI 10.5.0-rc.4.
-
Create a new project using abp new.
-
Run:
dotnet list package --include-transitive
-
Observe that:
Microsoft.EntityFrameworkCore.Design 8.0.0
is resolved transitively even though the project targets .NET 10 and uses EF Core 10 packages.
Symptoms:
Workaround:
Adding the package explicitly fixes the issue:
dotnet add package Microsoft.EntityFrameworkCore.Design --version 10.0.7
dotnet restore
After adding the explicit reference:
dotnet ef migrations list works correctly.
DbMigrator completes successfully.
Reproduction Steps
No response
Expected behavior
No response
Actual behavior
No response
Regression?
No response
Known Workarounds
No response
Version
10.5.0-rc.4
User Interface
MVC
Database Provider
EF Core (Default)
Tiered or separate authentication server
None (Default)
Operation System
Windows (Default)
Other information
No response
Is there an existing issue for this?
Description
Title: ABP CLI 10.5.0-rc.4 generates project with wrong EF Core Design dependency
Environment:
Steps to reproduce:
Install ABP CLI 10.5.0-rc.4.
Create a new project using
abp new.Run:
Observe that:
is resolved transitively even though the project targets .NET 10 and uses EF Core 10 packages.
Symptoms:
dotnet ef migrations listthrows:DbMigratorfails during seeding with:Workaround:
Adding the package explicitly fixes the issue:
After adding the explicit reference:
dotnet ef migrations listworks correctly.DbMigratorcompletes successfully.Reproduction Steps
No response
Expected behavior
No response
Actual behavior
No response
Regression?
No response
Known Workarounds
No response
Version
10.5.0-rc.4
User Interface
MVC
Database Provider
EF Core (Default)
Tiered or separate authentication server
None (Default)
Operation System
Windows (Default)
Other information
No response