0

I got a problem with my C++ CLI project. The software is ready and should be tested on different client pcs without VS 2017 or the "C++ Redistributable".

On executing the program, i get the MSVCP140D.dll is missing error message.

So it tried to change the Runtimelibrary from /MDd to /MD, to integrate the .dll . Not very succesful. I get so many Linker errors.

OS: Windows 7 IDE: Visual Studio 2017 Language: C++ with clr .NET Framework: v4.7.2

What can I do now, to include the MSVCP140.dll to my project?

(I know MSVCP140D.dll is only for debugging with /MDd)

Raphael
  • 53
  • 7
  • 3
    Do not change the `/MDd` to `/MD`. You should change the VS "Configuration" to "Release", it will change that for you and any other option needed. – rodrigo Aug 08 '19 at 09:03
  • This might help https://stackoverflow.com/questions/37398/how-do-i-make-a-fully-statically-linked-exe-with-visual-studio-express-2005 – Renat Aug 08 '19 at 09:07
  • Where is the VS setting ? – Raphael Aug 08 '19 at 09:24

0 Answers0