我的package.appxmanifest
中包含以下代码,但我收到一个错误消息,即TargetDeviceFamily
是“无法识别的XML元素” ...我不知道到底是怎么回事,但这是本文档的最后内容我发布我的应用程序,却迷失了方向。在MSDN上找不到任何东西,他们的支持并不那么支持。
代码:
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="6.3.0" MaxVersionTested="6.3.0" />
</Dependencies>
错误:
修正案:
当我删除
Dependancies
和TargetDeviceFamily
时,出现此错误:最佳答案
我认为您需要将最低和最高版本更新为
MinVersion="10.0.x.0" MaxVersionTested="10.0.y.0"
关于xml - 无法识别TargetDeviceFamily,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46009197/