AppManifest Validation failed. Invalid AppPlatformVersion in WMAppmanifest.xml

梦想的初衷 提交于 2020-01-04 01:30:10

问题


I recently upgraded my WP8 Silverlight Application to 8.1 Silverlight. But now, ehwn building I always get this error message

AppManifest Validation failed. Invalid AppPlatformVersion in WMAppmanifest.xml  Bedtime Music

What went wrong and how can I fix this.

Thanks


回答1:


Nah, I found out by myself: In the WMAppmanifest file there is this line:

<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2012/deployment" AppPlatformVersion="8.0">

To deal with the resulting error that occurs when just setting 8.0 to 8.1 I also needed to change the year from 2012 to 2014

<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2014/deployment" AppPlatformVersion="8.1">

Also somewehere else in the file.



来源:https://stackoverflow.com/questions/25226814/appmanifest-validation-failed-invalid-appplatformversion-in-wmappmanifest-xml

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