2017-12-27 897 views
0

当我尝试从Visual Studio 2017年调试我UWP项目在Windows 10中的一个相似之处实例中运行,它总是错误的是,它无法找到AppxManifest: DEP0700: Registration of the app failed. [0x80073CF0] error 0x80070003: Opening file from location: AppxManifest.xml failed with error: The system cannot find the path specified如何在平行版中调试Windows UWP应用程序?

回答

0

来解决此问题是如下的步骤:

  1. 卸载UWP项目(项目上单击鼠标右键,然后选择“卸载项目”)
  2. 编辑项目文件在VS(上卸载的项目上单击右键,然后选择“编辑...”)
  3. 找到OutputPath的XML条目。例如,为Debug | x86构建OutputPath时的条目应该看起来像bin/x86/Debug。注意该条目包含相对路径。
  4. 在其中一个虚拟机驱动器上编辑绝对路径的路径。例如,将路径设置为C:\ UWPBuilds \ x86 \ Debug目录。
  5. 关闭项目文件
  6. 重新加载项目(右键单击卸载的项目,然后选择“重新加载项目”)。主要是基于讨论

答案在这里找到:https://forum.parallels.com/threads/prlsf-permissions-issue-when-developing-an-uwp-app-in-visual-studio.342549/

相关问题