如何并行调试 Windows 个 UWP 应用程序?

How can I debug Windows UWP apps in parallels?

当我尝试在并行实例中调试 Visual Studio 2017 运行 in Windows 10 的 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 项目(右键单击项目然后 select "Unload Project")
  2. 在 VS 中编辑项目文件(右键单击已卸载的项目,然后 select "Edit ...")
  3. 为 OutputPath 找到一个 XML 条目。例如,为 Debug|x86 构建时 OutputPath 的条目应该类似于 bin/x86/Debug。请注意,该条目包含相对路径。
  4. 将路径编辑为虚拟机驱动器之一上的绝对路径。例如,将路径设置为 C:\UWPBuilds\x86\Debug 目录。
  5. 关闭项目文件
  6. 重新加载项目(右键单击已卸载的项目,然后 select "Reload Project")。

答案主要基于此处的讨论:https://forum.parallels.com/threads/prlsf-permissions-issue-when-developing-an-uwp-app-in-visual-studio.342549/