|
I would like to find all 'packages.config' files in all my projects in a solution.
Something like:
get-childitem -Path dte:\solution\projects -Recurse -Include 'packages.config'
comes to mind.
But this code is really slow and never returns.
What is a better approach to do this?
|