How to find out which platform is specified for .NET assembly?

In my C # project, I add a reference to a COM object and an interop assembly is created.

How do you know which platform (x86, x64, AnyCpu) this interaction assembly is aimed at?

+3
source share
1 answer

You can use CorFlags.exe, see the MSDN link . (Run from the command line VS, just point it to the assembly)
EDIT: Here is another link with more details than MSDN

+2
source

All Articles