All applications built with the 1.0 and 1.1 releases of the .NET Framework are treated as 32-bit applicationsand are always executed under WOW64 on the 32-bit common language runtime (CLR) on a 64-bit operating system. In addition, 32-bit specific applications built with version 2.0 of the .NET Framework would run under WOW64 on 64-bit platforms.
If you have 100% type safe managed code then you really can just copy it to the 64-bit platform and run it successfully under the 64-bit CLR.
- Invoking platform APIs via p/invoke
- Invoking COM objects
- Making use of unsafe code
- Using marshaling as a mechanism for sharing information
- Using serialization as a way of persisting state
Regardless of which of these things your application is doing it is going to be important to do your homework and investigate what your code is doing and what dependencies you have. Once you do this homework you will have to look at your choices to do any or all of the following:
- Migrate the code with no changes.
- Make changes to your code to handle 64-bit pointers correctly.
- Work with other vendors, etc., to provide 64-bit versions of their products.
- Make changes to your logic to handle marshaling and/or serialization.
When migrating managed applications that use p/invoke, consider the following items:
- Availability of a 64-bit version of the DLL
- Use of data types
The following is a discussion of the different considerations that must be given to making use of COM interoperability where managed code makes COM calls in a 64-bit environment:
- Availability of a 64-bit version of the DLL
- Use of data types
- Type libraries
Find your Application Bitness at runtime
There area also managed library functions to assist you at runtime to determine what environment you are running in.
- System.IntPtr.Size - to determine if you are running in 32-bit or 64-bit mode
- System.Reflection.Module.GetPEKind - to programmatically query an .exe or .dll to see if it is meant to run only on a specific platform or under WOW64
Determining the status of an .exe or .dll
Use corflags.exe at the command line to see if it an .exe or .dll is meant to run only on a specific platform or under WOW64. You can also use corflags.exe to change the platform status of an .exe or .dll. See CorFlags Conversion Tool (CorFlags.exe) for more information. A Visual Studio 2005 assembly's CLR header (or COM+ Runtime header) has the Major Run-time Version Number set to 2 and the Minor Run-time Version Number set to 5. In Visual Studio 2003 assemblies, they are 2 and 0, respectively. All applications that have the minor runtime version set to 0 are treated as legacy applications and are always executed under WOW64 on 64-bit machines.
Use the GetPEKind to programmatically query an .exe or .dll to see if it is meant to run only on a specific platform or under WOW64.
http://msdn.microsoft.com/en-us/library/ms241064(VS.80).aspx
http://msdn.microsoft.com/en-us/library/ms973190.aspx
AnyCPU Exes are usually more trouble than they're worth -