Surely I have missed something simple here. I used the link below to help me create a configuration file which I can use in my console application.
Simplest way to have a configuration file in a Windows Forms C# Application
<configuration>
<appSettings>
<add key="setting1" value="key"/>
</appSettings>
</configuration>
I have built my console application, but can't see the app.config file anywhere. I'd like to edit this configuration file without recompiling.
Any idea on how to do this ? Basically, I'm passing the compiled console app to someone, and wont be providing the source code, so I have provided an .xml document which I hope they'll be able to edit after the console app has been compiled.
Thanks