I'm currecntly using XmlPreProcess to process web.config's. I typically have a web.config like this:
<configuration>
<appSettings>
<!-- ifdef ${_Xml_PreProcess} -->
<!-- <add key="${MyVar}" -->
<!-- else -->
<add key="a1" value="true" />
<!-- endif -->
<!-- ifdef ${_Xml_PreProcess} -->
<!-- <add key2="${MyVar2}" -->
<!-- else -->
<add key2="a2" value="true" />
<!-- endif -->
</appSettings>
</configuration>
and my xml file i want to process with:
<settings>
<property name ="MyVar"> hello </property>
</settings>
Notice this doesn't have the property MyVar2
SO, I run XmlPreProcess and the parts of the content in Web.config gets replaced, MyVar gets replacd with "hello". Perfect. However, XmlPreProcess might throw an error because MyVar2 does not
exist in the setting file. The value of "key2" will be replaced "<!-- MyVar2 not defined -->"
My question is: How can I allow that undefined properties will not get touched and not replaced at all if the property is note defined? Something like ignoring undefined properties, without checking for MyVar2 using <!-- ifdef {[variable]} --> for a specific variable in the web.config.
Best regards.