Created
August 31, 2011 16:25
-
-
Save MikeLarned/1183946 to your computer and use it in GitHub Desktop.
Package Manager Console Update All Packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-Package -Updates | ForEach-Object{ $id = $_.Id; Get-Project -All | ForEach-Object{ Update-Package -Id $id -ProjectName $_.ProjectName } } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment