VSShellStub2.exe - 系统错误
VSShellStub2.exe - System Error
使用 Microsoft Visual studio Isolated Shell 2013 开发的应用程序 运行 在目标机器上安装的先决条件是什么。
在一台新的 Win7 SP1 64 位机器上,我安装了 Microsoft Visual studio Isolated Shell 2013 Redistributable package。
但是我在启动应用程序时遇到错误
VSShellStub2.exe - System Error
The program can't start because MSVCR120D.dll is missing from your computer. Try reinstalling the
program to fix this problem.
我需要安装任何其他应用程序才能运行吗?
终于找到问题了,
Visual studio 隔离 Shell 可再发行组件包不包括 c(Msvcr120d.dll) 和 C++(Msvcp120d.dll) 运行 时间的调试版本。因此,应用程序应该以发布模式构建,以使其在带有 VS 隔离 Shell 可再发行组件包
的全新系统中运行
https://msdn.microsoft.com/en-us/library/windows/hardware/dn448963(v=vs.85).aspx
使用 Microsoft Visual studio Isolated Shell 2013 开发的应用程序 运行 在目标机器上安装的先决条件是什么。
在一台新的 Win7 SP1 64 位机器上,我安装了 Microsoft Visual studio Isolated Shell 2013 Redistributable package。
但是我在启动应用程序时遇到错误
VSShellStub2.exe - System Error
The program can't start because MSVCR120D.dll is missing from your computer. Try reinstalling the program to fix this problem.
我需要安装任何其他应用程序才能运行吗?
终于找到问题了,
Visual studio 隔离 Shell 可再发行组件包不包括 c(Msvcr120d.dll) 和 C++(Msvcp120d.dll) 运行 时间的调试版本。因此,应用程序应该以发布模式构建,以使其在带有 VS 隔离 Shell 可再发行组件包
的全新系统中运行https://msdn.microsoft.com/en-us/library/windows/hardware/dn448963(v=vs.85).aspx