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? |
||||
|
|
Look at You can examine assembly metadata from the returned AssemblyName instance:
I'm using PowerShell in this example to call the method. |
|||||||||||
|
|
You can use the CorFlags CLI tool (for instance, C:\Program Files\Microsoft SDKs\Windows\v7.0\Bin\CorFlags.exe) to determine the status of an assembly, based on its output and opening an assembly as a binary asset you should be able to determine where you need to seek to determine if the 32BIT flag is set to 1 (x86) or 0 (Any CPU or x64, depending on
The blog post x64 Development with .NET has some information about 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:
As per comments the flags above are to be read as following:
|
|||||
|
|
How about you just write you own? The core of the PE architecture hasn't been seriously changed since its implementation in Windows 95. Here's a C# example:
Now the current constants are:
But with this method it allows for the possibilities of new constants, just validate the return as you see fit. |
|||||
|
|
Try to use CorFlagsReader from this project at CodePlex. It has no references to other assemblies and it can be used as is. |
|||||
|
|
cfeduke notes the possibility of calling GetPEKind. It's potentially interesting to do this from PowerShell. Here, for example, is code for a cmdlet that could be used: http://stackoverflow.com/a/16181743/64257 Alternatively, at http://stackoverflow.com/a/4719567/64257 it is noted that "there's also the Get-PEHeader cmdlet in the PowerShell Community Extensions that can be used to test for executable images." |
|||
|
|
|
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. |
|||||
|