I’ve come across a rather strange bug (I assume it’s a bug) in the Enterprise Library 4.1 configuration editor. I decided to put the EntLib configuration in external files as we have multiple configurations and want to be able switch between them easily.
Web.config, snippet (irrelevant sections removed):
<configuration>
<configSections>
<section name="enterpriseLibrary.ConfigurationSource" type="[... type def ...]" />
<section name="dataConfiguration" type="[... type def ...]" />
...
</configSections>
<enterpriseLibrary.ConfigurationSource selectedSource="Production Mode">
<sources>
<add name="Debug Mode" filePath="Entlib Configs\Debug Mode.config" type="[... type def ...]" />
<add name="Production Mode" filePath="Entlib Configs\Production Mode.config" type="[... type def ...]" />
</sources>
</enterpriseLibrary.ConfigurationSource>
...
</configuration>
The external files are placed in a subfolder, and everything is working quite nicely.
However: If I now open the web.config in the EntLib configuration editor, the EntLib config settings from the current active external file (set in the selectedSource attribute) are visible – they appear to be set in the web.config, and I assume this is the intention. But if I actually save web.config from the EntLib editor, the settings are removed from the external config file and they not even stored in the web.config. They’re just gone!!!
I think the intention was that you could use the editor to manage multiple config files: Changes would be changed in the correct file (which actually has the settings), but this feature was apparently never fully implemented.
Question: Is there a way to avoid this issue? Is my configuration of the external files wrong (although it’s working fine)?
