Hello,
I've finally come to a point when I want to send my program over to some people to test, however, I've run into problems on that.
This is my first time writing a program in managed code(C++\CLR), and so far, all I had to do was pack the redistributional package along with my files, however, it seems to be more difficult for managed code, as opening the program on a different computer brings up the "This application has failed to start because the application configuration is incorrect" error.
Browsing online told me that to solve this I need to statically link the project with the /MT compiler switch, however, the program being managed, I need the /clr command line option for it to compile at all, and that allows only the use of /MD.
So... How do I get around this? Any ideas?
Any help would be appreciated,
Thanks.