I've found a fair bit of information related to how a .NET assembly should load based on the flags set in the assembly header. Pages such as http://blogs.msdn.com/b/joshwil/archive/2005/05/06/415191.aspx seem to suggest that if you have a header as follows

PE : PE32

ILONLY : 1

32BIT : 0

It has been compiled as "AnyCPU" and I can expect it to load with the 32bit CLR on 32 bit platforms and with the 64bit CLR on 64bit platforms. This is exactly the behaviour I expected and wanted.

Unfortunately that doesn't appear to be the case on my windows 7 64bit machine. The assembly loads up in a 32 bit address space. I know I should be able to force the issue at compile time by building with x64 but why is it doing the wrong thing in the first place?

Has anyone else had this issue? Is it some registry or environment problem that I've yet to stumble upon?

Many Thanks

link|improve this question
Is your assembly linked with 3. party 32 bit assemblies or native dlls in some way ? – nos Sep 20 '10 at 16:32
I do not think so. I ran depends.exe on the assembly and all dlls had CPU type of x64 (other than IESHIM.dll which wasn't found at all but some searching seemed to suggest this generally happens and is not the source of the problem). The assembly (executable) itself was listed after its dependencies with a CPU type of x86, but it shouldn't be according to how it's header bits have been set. – jmellor Sep 22 '10 at 13:46
feedback

1 Answer

You didn't say anything about the kind of assembly. Only the startup assembly determines the bit-ness of the process. The EXE. Any DLL must follow suit.

link|improve this answer
This is a detail I forgot to include. The assembly is an executable. – jmellor Sep 22 '10 at 13:35
Document how you are sure that it is running in 32-bit mode. And verify that the 64-bit version of .NET is actually installed on your machine. – Hans Passant Sep 22 '10 at 13:37
I have both C:\Windows\Microsoft.NET\Framework and Framework64. Both have v2.0.50727 v3.0 v3.5 and v4.0.30319. I'm using taskmgr to verify that the assembly is running in 32bit mode (the process name is appended with *32) – jmellor Sep 23 '10 at 8:46
You've eliminated any remaining guess I could have. – Hans Passant Sep 23 '10 at 8:50
Thanks for the time and effort though. – jmellor Sep 23 '10 at 9:39
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.