http://forums.asp.net/p/1386237/3027009.aspx
Our tested solution for this issue is to simply compile directly on a 64 bit windows machine using the aspnet_compiler in the Framework64 folder.
Another option may be to compile on a 32 bit server with AnyCPU as the platform build type. Then once the site has been deployed to the 64 bit system replace all the Znode.* libraries in the web\bin folder with X64 targeted binaries. The Web code should automatically work in 64 bit mode because AnyCPU was targeted and the library dependencies will be set as 64 bit. Note that this approach has not been tested so your mileage may vary.





Comments