Forked from jongalloway/recursive-nuget-package-restore.ps1
Created
May 12, 2016 18:16
-
-
Save aidapsibr/880d7caa1a69954fce5d0efd5cdd05a5 to your computer and use it in GitHub Desktop.
Recursive NuGet Package Restore
This file contains hidden or 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