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

相關問題