Running an AnyCPU application as 32-bit on a 64-bit OS

.net, 64-bit, compilation, executable, windows

Solution

You can use corflags with the /32bit+ option.

Problem

Is there a way to execute a .NET application compiled under AnyCPU as a 32-bit application when running in a 64-bit Windows environment without recompiling as x86?

Original source

Related problems