Error: DEP0001, HRESULT: 0x80073CF9 when deploying UWP app to Phone

喜你入骨 提交于 2019-12-05 19:19:08

In Windows 10 you cannot have two apps with the same Name and/or PhoneProductId. In case you need to duplicate the app you will need to edit the packageappx.manifest file of one of them. You need to edit the code - right click on the manifest file, choose View code and edit mentioned data:

<Identity Name="LittleChangeinName" Publisher="CN=something" Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="082abc73-hereAlsoLittleChange-ea7ea4735fbd" PhonePublisherId="any GUID here" />

Remember that each of this apps has its own LocalData folder (LocalSettins and other data also).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!