Click here to Skip to main content
15,887,135 members
Articles / ILDASM
Tip/Trick

Assembly CLR Version

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
11 Jan 2012CPOL 25.3K   2   4
A way to quickly find the CLR version of a .NET assembly from the command line
I've been searching for a way to quickly find the CLR version of a .NET assembly from the command line.

Found references about ILDADM, DUMPBIN, assembly reflection methods, and so on. But still, those tools dump a lot of information and could directly find what I need, at least from a command line.

Here's what I found.

Using some gnuutil[^] commands (I love these tools on Windows environment), I extracted exactly the CLR version like this:

Command line
ildasm /header /text [ASSEMBLY_PATH] | grep -A 7 "Metadata Header" | tail -n 1

Result
//              'v2.0.50727' Version String


The ildasm command will dump a lot of information and the header will dump even further information.
Grep will search the Metadata Header text and will display the following 7 lines.
Tail will only retrieve the last line from the previous 7 lines.

Hope this will help you on catching old assemblies.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Portugal Portugal
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionsimple Way: Pin
_Dhull 15-Mar-13 1:23
_Dhull 15-Mar-13 1:23 
AnswerRe: simple Way: Pin
SergioAmorim15-Mar-13 1:27
SergioAmorim15-Mar-13 1:27 
GeneralRe: simple Way: Pin
_Dhull 15-Mar-13 2:08
_Dhull 15-Mar-13 2:08 
General???? ????? ?????? ???? ???????? Pin
smsm ahmed29-Jan-12 1:41
smsm ahmed29-Jan-12 1:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.