c# - Processing Resources with error: Wrong Parameter -
c# - Processing Resources with error: Wrong Parameter -
i'm developing visual studio 2013. target multilingual c# windows phone project. i've been working quite time , added sqlite back upwards yesterday (and changed platform target
arm
). after still compiling , running on smartphone.
however today simply changed think of harm (some minor changes in functions , translation), got next error message:
processing resources error: wrong parameter. unspecified error occurred.
i tried things:
makepri dump /if resources.pri /of resources.xml
vc2013 prompt, looks normal resource file me, edit it. verbose
in build options gave me 2k line build log. copied out sections, says 'failed':
1>done executing task "generateprojectprifile" -- failed. (taskid:143) 1>done building target "_generateprojectprifilecore" in project "myproject.csproj" -- failed.: (targetid:98)
i have no thought it. doesn't compile anymore. ideas why?
ok, odd.
the solution simpler expected. added resources.resx
file new project , became same error, suspected wrong file. after deleting 1 line , compiling, had mistake.
one line saying
<data name="testcalculation_tbox_testcalculate..placeholdertext" xml:space="preserve"> <value>calculate value one</value> </data>
instead of
<data name="testcalculation_tbox_testcalculate.placeholdertext" xml:space="preserve"> <value>calculate value one</value> </data>
(note 2 dots in the upper code sample)
i hope help in future, given errormessage not informative.
edit: deleted pastebin debug output, has nil solution.
c# visual-studio-2013 compiler-errors
Comments
Post a Comment