Last active
January 11, 2017 16:16
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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