May 23, 2013

How to find if .Net Assembly was built for x86 or x64

How to find if .Net Assembly was built for x86 or x64?


One can use CorFlags.exe tool to find whether .Net assembly was built for x86 or x64. As per Microsoft, CorFlags Conversion tool allows you to configure the CorFlags section of the header of a portable executable image (assembly).


Below is the sample command:

corflags.exe Oracle.DataAccess.dll

You need to execute this command in Visual Studio Command Prompt.



No comments:

Post a Comment