Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manojkulkarni30/f956e737530bc3613d220e5c9c2e3a43 to your computer and use it in GitHub Desktop.
Save manojkulkarni30/f956e737530bc3613d220e5c9c2e3a43 to your computer and use it in GitHub Desktop.
Powershell command to get the information about all the reference assemblies in a DLL
Command
Get-ChildItem MyLibrary.dll | % { [Reflection.Assembly]::LoadFile($_.FullName).GetReferencedAssemblies() | % { $_.Name + ".dll" } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment