Consider an application is built on 32 bit machine. Now I want to move application on 64 bit machine. Do I need to rebuild application once again on 64 bit machine?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You don’t need to.
There is both a 32 bit and 64 bit .net framework, and both run on 64 bit windows. That is because 64 bit windows can run 32 bit(x86) by “emulating” a 32 bit OS.
Your assembly is labeled at build time as either 32 bit, 64 bit, or “Any CPU”. Any CPU builds will run in the 64 bit framework on 64 bit windows, and 32bit on 32 bit windows.
The least amount of testing is required if you label your builds as 32 bit.