In my solution there's a main project which uses NLog and there's another small (independent) project that its purpose is to allow updating properties of the <nlog> section in the solution configuration file. (SolutionName.exe.config)
I created classes that inherit from ConfigurationElement, ConfigurationElementCollection and ConfigurationSection to be able to read and write into the config file.
I have to define the NLog section in the config file, otherwise NLog won't work. My configuration file looks like this:
<configSections>
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" /> <- need to remove this to make it work
<section name="nlog" type="ReadWriteConfig.NLogSection, ReadWriteConfig" />
</configSections>
I can't allow ReadWriteConfig to reference NLog, its a standalone application.
If I run ReadWriteConfig this way, it throws an exception that it can't find the NLog assembly. If I remove the NLog <section> it works fine.
ExeConfigurationFileMap configFileMap = new ExeConfigurationFileMap();
configFileMap.ExeConfigFilename = @"somepath\SolutionName.exe.config";
// Get current configuration file.
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(configFileMap, ConfigurationUserLevel.None);
NLogSection myUrlsSection = config.GetSection("nlog") as NLogSection;
What's the proper way dealing with the configuration file?