0

I'm building a Windows Phone 8 app in which I'm using the Telerik Rad Controls for WP8. The app is localised to en-US, en-GB, da-DK, de-DE, fr-FR, es-ES & it-IT. When I run the Store Test Kit I get the following error;

[ERROR]: A file registered in the AppManifest.xaml is missing: fr-FR/Telerik.Windows.Controls.Input.resources.dll.
[ERROR]: A file registered in the AppManifest.xaml is missing: it-IT/Telerik.Windows.Controls.Input.resources.dll.
[ERROR]: A file registered in the AppManifest.xaml is missing: it-IT/Telerik.Windows.Controls.Primitives.resources.dll.

The file are present in the relative /Bin/Release folders but are not being included in the .xap file. I've cracked open the xap and the correct files are added for all other languages but the above 3 are definitely missing.

I'm using the latest build of RadControls (2012.3.1211 DEC. 11, 2012)

Does anyone have any idea what the problem may be?

Cheers Si

4

2 回答 2

2

似乎其他人也有类似的问题,但没有解决方案:应用程序提交失败,出现与 Microsoft.Advertising.Mobile.resources.dll 相关的 1016

作为一种解决方法,可以在构建后添加文件,然后 xap 通过 Store Test Kit(我假设将通过认证!)。

我安装了 7zip,因此为了解决我的特定问题,我使用了以下构建后事件命令行:

"C:\Program Files\7-Zip\7z.exe" a -tzip $(TargetDir)<YOUR XAP FILE NAME>.xap $(TargetDir)it-IT\
"C:\Program Files\7-Zip\7z.exe" a -tzip $(TargetDir)<YOUR XAP FILE NAME>.xap $(TargetDir)fr-FR\
于 2013-01-03T09:49:04.060 回答
0

您是否尝试将 resources.dll 的 Build Action 设置为 Content、Compile 或 Embedded Ressource?这样,文件应该在构建过程中包含在内。

于 2013-01-03T12:29:36.387 回答