I've got an arbitrary list of .NET assemblies.
I need to programmatically check if each DLL was built for x86. (As opposed to x64 or Any CPU.) Is this possible?
|
I've got an arbitrary list of .NET assemblies. I need to programmatically check if each DLL was built for x86. (As opposed to x64 or Any CPU.) Is this possible?
| ||||
|
feedback
|
|
You can use Here's some information about Update: even better, you can use | |||||||||
feedback
|
|
Just for clarification, CorFlags.exe is part of the .NET Framework SDK. I have the development tools on my machine, and the simplest way for me determine whether a DLL is 32-bit only is to:
You will get output something like this:
The key is the "32BIT" flag as documented above: 1 = x86; 0 = Any CPU. | |||||||||||
feedback
|
|
Look at You can examine assembly metadata from the returned AssemblyName instance:
I'm using PowerShell in this example to call the method. | ||||
|
feedback
|
|
another way to check the target platform of a .NET assembly is inspecting the assembly with .NET Reflector... @#~#€~! I've just realized that the new version is not free! So, correction, if you have a free version of .NET reflector, you can use it to check the target platform. | |||||
feedback
|