Skip to content

Instantly share code, notes, and snippets.

@RhysC
Created February 28, 2011 16:31
Show Gist options
  • Select an option

  • Save RhysC/847569 to your computer and use it in GitHub Desktop.

Select an option

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

RhysC commented Jun 11, 2013

Copy link
Copy Markdown
Author

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