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 AnyCPU.) Is this possible?
|
5
|
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 AnyCPU.) Is this possible?
|
||
|
|
|
|
You can use Here's some information about Update: even better, you can use |
||||
|
|
|
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 |
||||||
|
|
|
Look at System.Reflection.AssemblyName.GetAssemblyName(string assemblyFile) You can examine assembly metadata from the returned AssemblyName instance:
I'm using PowerShell in this example to call the method. |
||
|
|