Just got the Visual Studio 11 developer preview installed. I see a new option in the project properties called "Prefer 32-bit" when compiling a managed (C#, VB) application with the AnyCPU target specified. This doesn't appear to be an option for class libraries, just top-level apps.

What does this flag indicate?

link|improve this question

70% accept rate
feedback

1 Answer

up vote 3 down vote accepted

It likely indicates the app is AnyCpu but when 32 bit is available it shouold run as such. This makes sense - 64 bit apps use more memory, and sometimes you just dont need the memory space ;)

link|improve this answer
64bit apps also cannot be debugged with edit and continue. Setting "Prefer 32-bit" hopefully enabled x64 users to debug the applications running on AnyCPU again without setting the target to x86/32bit compile. – CodingBarfield Sep 22 '11 at 7:27
feedback

Your Answer

 
or
required, but never shown

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