Is it possible to use the .NET configuration objects to get at .config files specified for a class library assembly rather than the executable assembly.
For example:
I'm working on a .net port of Concordion and I would like to have options that are specific to Concordion itself but there are also options that are specific to each specification assembly that Concordion calls. I would like the Concordion options to be in one .config file while the specification assemblies each have their own .config files (where the schema of each of these config files is the same).
I can do it right now by writing my own parsing logic but if there is something already built in .NET I would prefer to use that. Right now, as far as I know, it is only possible to have a single .config file for the executable assembly.