Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.