You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 12, 2021. It is now read-only.
I'm trying RateMyApp 1.2.4 Alpha (prerelease nuget) on a Windows Phone Universal App.
Everything seems to work fine when compiled and deployed to device in Debug,
but in Release mode it compiles ok but it fails when trying to deploy on a physical device with the following error message:
"Error : DEP6810 : MdilXapCompile.exe failed with error code 1004. See log file '\obj\Release\MDIL\MDILXapCompileLog.txt' for more details."
And the referenced compilelog file contains (excerpt):
This is because the wp8.1 solution changed its way of multilingual resource file format. Need to re-create the resource files to make it work. (if you don't do that, it works on simulator but not on real devices). The steps are:
open the source code of project RateMyAppXAML in visual studio
in menu Tools -> enable multilingual toolkit
add a new resource file "Resources.resw" and copy the strings in AppResources.resx to it
delete all old resource files including AppResources.resx and AppResources.xx-yy.resx
In menu Project->Add translation languages, add desired languages, and copy the old translations to new files
In C# code, fix all compile errors such as AppResources.RatingTitle to new Windows.ApplicationModel.Resources.ResourceLoader().GetString("RatingTitle")
Actually you would not need to delete the ResX files, you would simply re-organize them, and rename the extension. the file format stayed the same, the extension is needed for knowing which tools to use internally.I also assume that the toolkit is really not needed.
I'm trying RateMyApp 1.2.4 Alpha (prerelease nuget) on a Windows Phone Universal App.
Everything seems to work fine when compiled and deployed to device in Debug,
but in Release mode it compiles ok but it fails when trying to deploy on a physical device with the following error message:
"Error : DEP6810 : MdilXapCompile.exe failed with error code 1004. See log file '\obj\Release\MDIL\MDILXapCompileLog.txt' for more details."
And the referenced compilelog file contains (excerpt):
"Error: Compile filter argument specified non-existent file: \obj\Release\MSIL\ar-SA\RateMyApp.resources.dll
Invalid argument"
The text was updated successfully, but these errors were encountered: