执行
Windows应用商店或通用项目时,Visual Studio显示以下错误:
Error 1 Error : DEP0700 : Registration of the app Failed. Another user has already installed an unpackaged version of this app. The current user cannot replace this with a packaged version. The conflicting package is dff9bf13-e639-46ad-a6ed-61b27be58eed and it was published by CN=owais. (0x80073cf9) tiles
解决方法
您可能正在尝试在已安装的计算机上安装应用程序.也许您在开发期间安装了一次,现在尝试从另一个帐户或使用其他部署方法安装它.
最佳方法:删除已安装的应用程序,例如使用Powershell Remove-AppxPackage
并指定包,然后尝试重新安装.
另一种方法:更改您尝试安装的应用程序的Package.appxmanifest中的包名称,编译并重新安装.
例:
<Package ...> <Identity Name="5a0c511a-fdfd-4417-80b8-2bedbf437971" ...>
改成:
<Package ...> <Identity Name="5a0c511a-fdfd-4417-80b8-SomethingElse" ...>