How can I use values in appSettings as values for other sections/configurations in app.config. For example:
<appSettings>
<add key="directory1" value="ParentFolder" />
<add key="directory2" value="[directory1]/ChildFolder" />
<add key="directory3" value="[directory2]/GrandChildFolder" />
</appSettings>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="[directory1]" />
</assemblyBinding>
</runtime>
I want to replace the keys enclosed with square brackets with the actual value from the appSettings. Thanks!
