2016-07-21 247 views
0

正確地創建C++項目當我嘗試創建win32 C++項目它給我下面的錯誤:無法在Visual Studio 2013

Unable to read the file. project cannot be loaded. Root element is missing 

這裏是一個屏幕截圖。我不得不重新安裝演播室:

enter image description here

+0

錯誤消息中引用的文件「C:\ Users \ ... \ Microsoft.Cpp.Win32.user.props」是否存在?你可以在記事本中打開它嗎? – dxiv

+0

嘗試刪除'bin'和'obj'文件夾 –

+0

文件夾中沒有任何文件 –

回答

1

C:\Users\...\AppData\Local\Microsoft\MSBuild\v4.0\Microsoft.Cpp.Win32.user.props缺失,作爲OP的評論澄清。這表明VS(重新)安裝沒有成功完成。

爲了快速嘗試,您可以自己在Notepad中創建丟失的文件,其中包含以下內容。

<?xml version="1.0" encoding="utf-8"?> 
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 

</Project> 

然而,VS安裝可能會有更多的問題,而不僅僅是缺少的文件。