C++ How to handle msvcr110.dll error
Hi Guys!
Whenever I choose MD (Multi Threaded Dll) I am having msvcr110.dll error with the computers who doesn't have Visual C++ 2005 Redistributable Package. I am not expecting from users to install this.
I read somewhere taht changing MD to MT will fix the problem. But this time the complier started to give incompability error with /clr. Then I set No for Common Language Runtime support and it started to give many syntax errors in the code because , i guess, it has no language support for these functions any longer.
Now, the question is, what sould I do exactly or what is the exact settings for the complier to prevent msvcr110.dll error with CLR support without installing Visual C++ 2005 Redistributable Package?
Thanks a lot!