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 .NET application is actually set to run in 32-bit mode?
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 .NET application is actually set to run in 32-bit mode?
Well, if you're using .NET 4.0, there's
System.Environment.Is64BitProcess
.