You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ASP.NET and EF tools packages (dotnet-publish-iis, dotnet-watch, dotnet-sql-cache, dotnet-ef etc. ) are being renamed. The names of the tools, however, remain unchanged. project.json files of the projects using tools need to be updated to use new tool names.
Old package name
New package name
dotnet-ef
Microsoft.EntityFrameworkCore.Tools
Microsoft.EntityFrameworkCore.Commands
Microsoft.EntityFrameworkCore.Tools
dotnet-aspnet-codegenerator
Microsoft.Extensions.CodeGeneration.Tools
dotnet-publish-iis
Microsoft.AspNetCore.Server.IISIntegration.Tools
dotnet-razor-tooling
Microsoft.AspNetCore.Razor.Tools
dotnet-sql-cache
Microsoft.Extensions.Caching.SqlConfig.Tools
dotnet-user-secrets
Microsoft.Extensions.SecretManager.Tools
dotnet-watch
Microsoft.DotNet.Watcher.Tools
Here are some examples showing the tools section of a project.json file of a project using a tool (the imports are required for now but should not be in the future):
dotnet-ef and Microsoft.EntityFrameworkCore.Commands. These packages have been merged into one.
ASP.NET and EF tools packages (
dotnet-publish-iis
,dotnet-watch
,dotnet-sql-cache
,dotnet-ef
etc. ) are being renamed. The names of the tools, however, remain unchanged.project.json
files of the projects using tools need to be updated to use new tool names.Here are some examples showing the
tools
section of aproject.json
file of a project using a tool (theimports
are required for now but should not be in the future):Please use dotnet/aspnetcore#1411 for discussion
The text was updated successfully, but these errors were encountered: