dgorti
dgorti

Reputation: 1321

How do I uninstall *all* nuget packages from a solution in Visual Studio

I know I can uninstall-package from the PM console. I got into some dependency issues with another project and I want to start over, and I need to delete all packages in one shot. Is there a way?

Upvotes: 131

Views: 82687

Answers (9)

Mariusz
Mariusz

Reputation: 964

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]

Upvotes: 3

Vlad Setchin
Vlad Setchin

Reputation: 121

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}

Upvotes: 1

Norman
Norman

Reputation: 3479

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

Upvotes: 187

Teoman shipahi
Teoman shipahi

Reputation: 23052

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++
    }
}

Upvotes: 0

Nathan
Nathan

Reputation: 663

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.

Upvotes: 10

Amir
Amir

Reputation: 2415

try this:

get-package | uninstall-package -removedependencies -force

Upvotes: 38

Michal Steyn
Michal Steyn

Reputation: 351

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} }

Upvotes: 16

Vladimir Zalmanek
Vladimir Zalmanek

Reputation: 901

In Package Manager Console just type:

get-package | uninstall-package -removedependencies

Upvotes: 90

TResponse
TResponse

Reputation: 4125

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

Upvotes: 4

Related Questions