Skip to content

Can't change EF Core tools version (6.0.8 -> 7.0.5) #165

Closed Answered by seclerp
RyT-13 asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @RyT-13, EF Core Tools, also called just dotnet ef is a .NET Tool executable for design time manipulation of your migrations, DbContexts, etc.

Microsoft.EntityFrameworkCore.Design and Microsoft.EntityFrameworkCore.Tools (they are almost identical so you can remove one of them) NuGets are a "host" part of the tools that should be available in your startup project and it's used as an entry point for dotnet ef.

So you should update your dotnet ef - to do so:

  • If you installed your tools globally (your case according to the dialog information): dotnet tool update --global dotnet-ef --version 7.0.5
  • If you installed your tools locally (per solution): dotnet tool update dotnet-ef --version 7.0.5

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@RyT-13
Comment options

Answer selected by RyT-13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants