Skip to content

Instantly share code, notes, and snippets.

@RhysC
Created February 28, 2011 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RhysC/847569 to your computer and use it in GitHub Desktop.
Save RhysC/847569 to your computer and use it in GitHub Desktop.
Shows all the hints paths for the projects in your solution TAGS : reference binary dependency
$pattern = "HintPath"
get-childitem . | get-childitem | select-string -pattern $pattern |
foreach { $_.line.Replace("<HintPath>", "").Replace("</HintPath>", "").Replace("..\\", "").Replace("..\", "").Trim() } |
sort | Get-Unique > files.txt
@RhysC
Copy link
Author

RhysC commented Jun 11, 2013

be sure to run from your src folder!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment