3

我有一个用Visual Studio 2010编写的Windows应用程序。它连接到Web服务并执行其他数据库调用。如何解决Visual Studio 2010和Visual Studio 2012之间的冲突

当我安装Visual Studio 2012上述应用程序不再工作。我认为某些事情已经被破坏,或者说2010年到2012年间可能会发生冲突。所以为了确保我卸载了所有Visual Studio并重新安装了Visual Studio 2010.我试图再次运行该应用程序,并且它的运行率达到了100%。然后,我重新安装了Visual Studio 2012,该应用程序无法运行。它出现了以下错误:

A fatal error has occurred and debugging needs to be terminated. For more details, please the Microsoft Help and Support web site. HRESULT=0x8007000e. ErrorCode=0x0. 

为什么我会得到这个错误?我该如何解决这个问题?

我的应用程序不能内存不足,因为我有大约4GB,并且在没有安装Visual Studio 2012的情况下运行时就足够了。

+0

http://stackoverflow.com/questions/4038884/why-am-i-often-getting-error-0x8007000e-when-debugging-a-project-in-visual-studi – 2013-02-13 09:32:27

+0

一些原因在这里描述:http://stackoverflow.com/questions/7425475/can-visual-studio-2012-be-installed-side-by-side-w-visual-studio-2010 – Alexander 2013-02-13 09:55:37

回答

0

.NET Framework 4.5是对.NET Framework 4.0的“就地升级”。有些文件可能是升级的,这可能是原因。 看到链接的详细信息vs2010 v/s vs2012

相关问题