I have a AnyCPU app installed to Program Files (x86). On one Win7 x64 machine it runs as x64 as expected while on another Win7 x64 machine, it runs as x86!!

How can this be? I expected it to run as x64 on both machines. What might be the reason and what can I do to always make it run as x64?

Does it matter where I am running it from - Program Files (x86) in my case?

link|improve this question
1  
Is the program in "Program Files (x86)" on both machines? – Will A Jun 10 '11 at 10:28
feedback

1 Answer

It's likely that you linked some assemblies that are not AnyCPU but include native code (or are compiled as x86), which cause the entire process to fall-back to x86.

To understand how your assemblies are compiled, Here is a related question that might help: How to determine if a .NET assembly was built for x86 or x64?

Note: the location of the executable on the file system does not matter at all.

link|improve this answer
1  
But then, how did it manage to run as x64 on a different machine? – GSerg Jun 10 '11 at 10:29
3  
Wild guess: different versions of the same dependent assembly in the GAC. I ran into this problem with TFS assemblies and I've spent literally days to figure out the problem. – Dario Solera Jun 10 '11 at 10:30
@GSerg - for example, if you have referenced drivers (like database drivers), and one user has only got the 32 bit versions installed it will force your app to run as 32 bit as well. – slugster Jun 10 '11 at 10:37
feedback

Your Answer

 
or
required, but never shown

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