如何并行调试 Windows UWP 应用程序?
Posted
技术标签:
【中文标题】如何并行调试 Windows UWP 应用程序?【英文标题】:How can I debug Windows UWP apps in parallels? 【发布时间】:2018-06-08 07:50:02 【问题描述】:当我尝试在并行实例中从在 Windows 10 中运行的 Visual Studio 2017 调试我的 UWP 项目时,它总是错误地指出它找不到 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
【问题讨论】:
【参考方案1】:解决此问题的步骤如下:
-
卸载 UWP 项目(右键单击项目,然后选择“卸载项目”)
在 VS 中编辑项目文件(右键单击卸载的项目,然后选择“编辑...”)
为 OutputPath 找到一个 XML 条目。例如,为 Debug|x86 构建时 OutputPath 的条目应类似于 bin/x86/Debug。请注意,该条目包含相对路径。
将路径编辑为 VM 驱动器之一上的绝对路径。例如,将路径设置为 C:\UWPBuilds\x86\Debug 目录。
关闭项目文件
重新加载项目(右键单击已卸载的项目,然后选择“重新加载项目”)。
主要根据此处的讨论回答:https://forum.parallels.com/threads/prlsf-permissions-issue-when-developing-an-uwp-app-in-visual-studio.342549/
【讨论】:
以上是关于如何并行调试 Windows UWP 应用程序?的主要内容,如果未能解决你的问题,请参考以下文章