I have a .NET application that was supposed to be compiled as a 32-bit only application. I suspect my build server isn\'t actually doing it.
How do I determine if a .NE
The quickest way is probably that it'll have an asterisk (*) after its name in task manager when run on a 64 bit machine. The asterisk means it's running in syswow64, ergo it's marked 32 bit.
The other way is to run corflags.exe against it and this will display the answer you're after. This comes with the .NET SDK.