C # - Error after changing from 32 to 64bit

2

My project was compiling normal, but when I changed from 32 to 64 there appeared a lot of errors. If I ignore and continue several components disappear. I'm new to C #. How can I restore the project to a previous day as I did in Delphi? Follow the image.

Thanks

    
asked by anonymous 18.05.2016 / 13:08

1 answer

5

Have you developed your components in a separate class library? If yes, libraries should be set to AnyCPU, only executables should be compiled as 32 or 64 bits.

If you have not put the components into a separate library, create a new Class Library project, embed its components in it, and set the build method to AnyCPU.

To change the configuration go to the Build option - > Configuration Manager.

Theconfigurationshouldbeasdescribedbelow:

    
18.05.2016 / 13:17