如何从 VisualStudio 中的解决方案卸载 * all * nuget 包

我知道我可以从 PM 控制台卸载软件包。 我在另一个项目中遇到了一些依赖性问题 我想重新开始我需要一次性删除所有包裹。 有办法吗?

62770 次浏览

I do not believe this is possible so un-install ALL packages at once. However, as you already indicated you can un-install a package, but you can also tell it to un install its dependencies doing the following:

Uninstall-Package OpenIdPortableArea –RemoveDependencies

Here is a blog by Marcus Hammarberg explaining this: http://www.marcusoft.net/2011/02/nuget-uninstall-remove-dependencies.html

In Package Manager Console just type:

get-package | uninstall-package -removedependencies

To get all packages from all projects in the solution use Get-Package. To get all packages from a specific project use Get-Package -ProjectName "YourProjectName".


Remove all packages from all projects in the solution

Be careful: This will uninstall ALL packages in the solution. If -Force parameter is used, packages are removed even if dependencies exist.

Get-Package | Uninstall-Package -RemoveDependencies -Force


Remove all packages from a specific project within a solution

Be careful: This will uninstall ALL packages in the project. If -Force parameter is used, packages are removed even if dependencies exist.

Get-Package -ProjectName "YourProjectName" |
Uninstall-Package -ProjectName "YourProjectName" -RemoveDependencies -Force

If you want to uninstall every NuGet Package from every Project in a Solution, then use this in the NuGet Package Manager Console:

foreach($project in $projects){ $packages = Get-Package -ProjectName $project.Name; foreach($package in $packages){ Uninstall-Package -ProjectName $project.Name -Id $package.Id -Force} }

try this:

get-package | uninstall-package -removedependencies -force

Using the -Force parameter in my case left project file modifications and references to some binaries that should have been removed when normally uninstalling the packages.

Here is a naive method to uninstall all packages from specific projects without using the -Force parameter. Effectively it tries to uninstall the packages over and over again until there are no packages left, so you will see some errors mentioning dependent packages (if you have them) but they will turn up less and less as the leaf packages get removed each iteration.

Also worth mentioning I've only tested the following PowerShell snippets in the PackageManager console. ("Tools > NuGet Package Manager > Package Manager Console")

Uninstall all the packages from all the projects in a solution

while((Get-Project -All | Get-Package).Length -gt 0) { Get-Project -All | Get-Package | Uninstall-Package }

Only remove Projects containing the word "WildCardSearch"

while((Get-Project -All | Where-Object ProjectName -like '*WildCardSearch*'  | Get-Package).Length -gt 0) { Get-Project -All | Where-Object ProjectName -like '*WildCardSearch*' | Get-Package | Uninstall-Package }

Note that if you have another issue apart from dependent packages preventing an uninstall of the package this snippet will run forever until you manually stop it.

Dummy old-school for loop:

$packages = get-package
$packageId = "Apache.NMS.ActiveMQ"




$counter = 1
foreach($package in $packages){
if($package.Id -eq $packageId)
{
Write-Host "`n$counter-Deleting Package:`n"
$package
Uninstall-Package -Id $packageId -ProjectName $package.ProjectName -RemoveDependencies
Write-Host "`n============================================`n"
$counter++
}
}

Updated a script to remove all nuget packages for single project in VS solution:

$projectName = "MyProjectName"; $packages = Get-Package -ProjectName $projectName; foreach($package in $packages){ Uninstall-Package -ProjectName $projectName -Id $package.Id -Force}

Auto-restoring (uninstall and install without updating to the latest version) of packages using Package Manager Console:

This runs for the whole solution:

Update-Package -Reinstall

... or for specific project only:

Update-Package -Reinstall -Project [ProjectName]