Hi,
I have multiple configuration files describing Addins to my system. I'm looking for a way to globalize some of the tags in the configuration file (i.e - support multiple languages)
for example: in the file activity.xml i want to globalize some of the attributes:
<?xml version="1.0" encoding="UTF-8"?>
<Resource
type="Activity"
id="123456.ConcatenateStrings"
version="1.0.0"
group="String Manipulation"
shortName="$$Concatenate_Strings"
description="$$Concatenates_Strings_Description"
assembly="VTDBasicActivities.dll"
className="ConcatenateStringsActivity"
visible="true">
</Resource>
I want the values of some of the attributes (shotName, description) to be taken from a different configuration file (resx probably) where the values could be written in any language.
I need a way to mark the values of some attributes, so that the xml parser would know to take their value from a configuration file (in my example I wrote "$$" before those values)
what is the best way for doing this? I'm parsing the xml file with C#
Thanks!