I am in process of creating an windows forms application and one question has just came up to make my application to run on both 32 bit and 64 bit machines.
I googled my question and found one solution to change the Platform target from ‘any cpu’ to x86 and then compile it. Then it will work on both systems.
Now here my question is, do i need to do anything else to achieve this or the above solution will be fine.
I am in middle of creating my application so i can not test it now.
solution explorer –> Double click Properties (A new tab should open up) –> build tab
Setting configurations to
'Any CPU'ensures that your application will work on both 32 and 64bit computers.