Last active
May 12, 2016 18:16
-
-
Save jongalloway/cc6cb3885fe1777a05ac to your computer and use it in GitHub Desktop.
Recursive NuGet Package Restore
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-childitem . -include *.sln -recurse | foreach ($_) { nuget restore $_.FullName -verbosity detailed} | |
get-childitem . -include *.png -recurse | foreach ($_) { pngout "$_"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment