There is a project that uses CefSharp . For this library to work correctly, you need c ++ redistributable . I have it installed. However, if this project is dropped to another person, then the program does not run for him, writes that the CefSharp library was not found . Even after installing c ++ redistributable a person does not have a program. However, if he installs VS , then everything starts to work correctly.

I read that the dynamic library should be converted to a static a la:

Configuration Properties -> C\C++ -> Code Generation 

But I did not find such a function in VS2015 . What could be the problem?

  • If "Even after installing c ++ redistributable, the person does not run the program." It means that the vcredist is not installed. The option of static linking in 2015 studios is there, and it is exactly where you wrote it. Total two options: set the desired vcredist or link CefSharp statically. - Vladimir Martyanov
  • 3
    Look at the program like Dependency Walker which libraries are required for the application and add them to your distribution. - αλεχολυτ
  • @ Vladimir Martianov and how to do it statically? Thanks - alexander
  • @alexander Well, you yourself write the path to the settings. There and do - Vladimir Martyanov
  • @ Vladimir Martianov, the fact is that in VS2015 I didn’t find such a setting, although I tried everything - alexander

0