I have a console application written in C# under .net 4.0 It has a bunch of variables which I want to move into App.Config (so it will be all in one place). Added this part of code to App.Config (between configuration tags):
<configuration>
<appSettings>
<add key="RemoteDirectory" value="Some Text Here"/>
</appSettings>
</configuration>
In my program trying to test it with this code
Console.WriteLine(ConfigurationManager.AppSettings["RemoteDirectory"]);
but I keep getting "Configuration system failed to initialize" error.