NuGet commonly used commands

NUGET command

CMD will nuget upgrade to the latest version: nuget -self Update

First, install

1. Install the specified version library
install-package <package name> -version  <version number>

2. Install the specified item
install-package <package name> -project XXXProjectName -version  <version>

Second, update

Update-Package <package name>

Third, re-install

1. Nuget reinstall all packages (will reinstall the entire solution)
Update-Package -reinstall

2. Specify items reinstall all packets Nuget
Update Package--project  <project name>  -reinstall

Fourth, uninstall

1. Normal Uninstall: uninstall-package <package name>

2. Force Uninstall: Uninstall-Package <package name> -Force

V. inquiry

Get-Package lists the default local package already installed can add parameters -remote -filter entityframework you want to find the source of the package in the package

common problem

1.nuget prompted to install dll "has dependencies defined as system.diagnostics.tracesource" because nuget version is relatively low due.

Solution:

Open VS-> Open menu "Tools" - "expanded and updated" -> select "Update" -> select "Visual Studio Library" = "Click nuget be updated;

Guess you like

Origin www.cnblogs.com/zhaoyl9/p/11490171.html