Skip to content

Instantly share code, notes, and snippets.

@johnmmoss
Created January 16, 2017 11:09
Show Gist options
  • Select an option

  • Save johnmmoss/4535fbac9590d8b9edd85c9cbf5593f6 to your computer and use it in GitHub Desktop.

Select an option

Save johnmmoss/4535fbac9590d8b9edd85c9cbf5593f6 to your computer and use it in GitHub Desktop.
VisualStudio: Find all references for a library
(Get-Project -all).Object.References |
Where-Object { $_.Name -eq "Castle.Core" } |
Select-Object Identity, Path
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment