I've got an assembly, e.g. "DoCommonStuffAssembly", with its own app.config.
This assembly is referenced by two different assemblies, e.g. "BusinessLogic01" and "BusinessLogic02", with their own version of the configuration section of DoCommonStuffAssembly.
Now I need both BusinessLogic01 and BusinessLogic02 to be referenced in the same ASP.NET application, but both should have different versions of the configuration section of DoCommonStuffAssembly (like log folder or something like that).
How can I do this? Where do I have to make changes to make DoCommonStuffAssembly useful in an environment like this?