如何从Visual Studio Express 2012 for Windows Phone修复这些错误



我使用的是Visual Studio Express 2012 for Windows Phone,并遵循了位于以下链接的MiniBrowser教程:

http://msdn.microsoft.com/en-US/library/windowsphone/develop/ff402526(v=vs.105).aspx

按照所有说明操作后,一旦我进入说明的"运行你的应用"部分,在步骤 1"生成"下,将生成以下错误:

Error 1  The name "LocalizedStrings" does not exist in the namespace "clr-namespace:MiniBrowser".   c:usersavery_000documentsvisual studio 2012ProjectsMiniBrowserMiniBrowserApp.xaml   1   1   MiniBrowser
Error 2  The name "LocalizedStrings" does not exist in the namespace "clr-namespace:MiniBrowser".   c:usersavery_000documentsvisual studio 2012ProjectsMiniBrowserMiniBrowserApp.xaml   10  9   MiniBrowser
Error 3  The build stopped unexpectedly because of an internal failure.
Microsoft.Build.Exceptions.BuildAbortedException: Build was canceled. Failed to successfully launch or connect to a child MSBuild.exe process. Verify that the MSBuild.exe "C:WindowsMicrosoft.NETFrameworkv4.0.30319MSBuild.exe" launches successfully, and that it is loading the same microsoft.build.dll that the launching process loaded. If the location seems incorrect, try specifying the correct location in the BuildParameters object, or with the MSBUILD_EXE_PATH environment variable.
   at Microsoft.Build.BackEnd.NodeProviderOutOfProc.CreateNode(Int32 nodeId, INodePacketFactory factory, NodeConfiguration configuration)
   at Microsoft.Build.BackEnd.NodeManager.AttemptCreateNode(INodeProvider nodeProvider, NodeConfiguration nodeConfiguration)
   at Microsoft.Build.BackEnd.NodeManager.CreateNode(NodeConfiguration configuration, NodeAffinity nodeAffinity)
   at Microsoft.Build.Execution.BuildManager.PerformSchedulingActions(IEnumerable`1 responses)
   at Microsoft.Build.Execution.BuildManager.HandleNewRequest(Int32 node, BuildRequestBlocker blocker)
   at Microsoft.Build.Execution.BuildManager.IssueRequestToScheduler(BuildSubmission submission, Boolean allowMainThreadBuild, BuildRequestBlocker blocker) c:usersavery_000documentsvisual studio 2012ProjectsMiniBrowserMiniBrowserMiniBrowser.csproj MiniBrowser

这些错误意味着什么?

看起来当我

的计算机上安装Visual Studio Express 2012 for Windows Phone时,它将项目文件夹放在与应用程序相同的硬盘驱动器上。出于某种原因,为了编译它,解决方案是在不同的硬盘驱动器上重新创建项目,然后从那里开始工作。

感谢大家的帮助!

最新更新