Hi,
When building a project with the ArcGISRuntime, localization files are copied to build output. I was hoping for an option to add a property to my project file to only include language for only those languages I want, rather than all of them being copied to the output folder. Is that something that sounds reasonable to add to an upcoming version?
Solved! Go to Solution.
Try adding this to a PropertyGroup in your project file with the languages you want:
<SatelliteResourceLanguages>en;de</SatelliteResourceLanguages>
Try adding this to a PropertyGroup in your project file with the languages you want:
<SatelliteResourceLanguages>en;de</SatelliteResourceLanguages>
Ahh, nice. Thanks.