Xamarin auto generated AppResources.Designer.cs does not take subfolder name in ResourceManager baseName -
i working on ios + android project in xamarin (not xamarin-forms). app needs support multiple languages , localization working correctly using appresources files.
for clean code setup , better management, appresources
files stored inside resx directory within core project base directory.
on updating appresources.resx
file, xamarin automatically recreates appresources.designer.cs
file in same directory in resourcemanager
created base name projectname.appresources
system.resources.resourcemanager temp = new system.resources.resourcemanager("projectname.appresources", typeof(appresources).gettypeinfo().assembly);
however, since app resources stored under resx folder, i'd resourcemanager
created base name projectname.resx.appresources
what changes shuld make sure appresources.designer.cs file creation takes account correct folder / namespace path?
this known issue reported on xamarin bugzilla.
fixed changing resource id of resource files projectname.rexx.appresources.resources
projectname.appresources.resources
in files properties pane.
Comments
Post a Comment