Reference
List installed package
dotnet list package
Restores the dependencies and tools of a project
dotnet restore
Install new package to local project
dotnet add package <package_name>
Remove package from local project
dotnet remove package <package_name>
Top comments (1)
I like the idea of a cheat sheet, but this is not it. Suggestion: Don't make entire topics out of individual commands. Group them logically first. Example:
Package Management
dotnet add package <package_name>
dotnet add package Serilog
dotnet list package