在另一台计算机上打开 Visual Studio 项目的 .exe 时出错
Error opening .exe of Visual Studio project in another computer
当我在另一台计算机(可能没有 VS)中打开我的 Visual Studio C++ 项目(C++ CLR 项目)的 .exe 文件时,出现此错误:
The program can't start because MSVCR120D.dll is missing from your computer. Try reinstalling the program to fix this problem.
你能帮我解决我的程序在其他电脑上不能打开的问题吗?
您必须创建发布版本。您的问题是由复制调试版本引起的,但该版本适用于 Visual Studio 调试器。
当我在另一台计算机(可能没有 VS)中打开我的 Visual Studio C++ 项目(C++ CLR 项目)的 .exe 文件时,出现此错误:
The program can't start because MSVCR120D.dll is missing from your computer. Try reinstalling the program to fix this problem.
你能帮我解决我的程序在其他电脑上不能打开的问题吗?
您必须创建发布版本。您的问题是由复制调试版本引起的,但该版本适用于 Visual Studio 调试器。