Skip to content

Instantly share code, notes, and snippets.

@abombss
Created July 18, 2012 19:47
Show Gist options
  • Save abombss/3138413 to your computer and use it in GitHub Desktop.
Save abombss/3138413 to your computer and use it in GitHub Desktop.
Fix All Nuget Packages in Solution
Get-Project -All | %{ $proj = $_; Get-Package -Project $_.Name | %{ $pkg = $_; Uninstall-Package -Id $pkg.Id -ProjectName $proj.Name -Force; Install-Package -Id $pkg.Id -ProjectName $proj.Name -Version $pkg.Version } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment