Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aidapsibr/880d7caa1a69954fce5d0efd5cdd05a5 to your computer and use it in GitHub Desktop.
Save aidapsibr/880d7caa1a69954fce5d0efd5cdd05a5 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