dotNet
Handling packages
dotnet command can be used manage NuGet packages
Switch to the directory containing the project and then
dotnet add package <PACKAGE_NAME>- Optionally, pass
-v <VERSION>to install specific version of the package
- Optionally, pass
dotnet list packagedotnet remove package <PACKAGE_NAME>
See the
documentation for details.