Skip to content

Instantly share code, notes, and snippets.

@jongalloway
Last active May 12, 2016 18:16
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jongalloway/cc6cb3885fe1777a05ac to your computer and use it in GitHub Desktop.
Save jongalloway/cc6cb3885fe1777a05ac to your computer and use it in GitHub Desktop.
Recursive NuGet Package Restore
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