Is there a way to load multiple app.configs in memory?

Posted by Dave on Stack Overflow See other posts from Stack Overflow or by Dave
Published on 2010-04-02T17:55:10Z Indexed on 2010/04/02 18:23 UTC
Read the original article Hit count: 158

I have a windows service that loads multiple "handlers" written by different developers. The windows service exe has it's own app.config which I need.

I'm trying to make it so that each developer can provide their own app.config along with their handler code. However, it seems an exe can only have one app.config. However, ASP.NET seems to support nested web.config... That's not exactly what I want, but I don't even know how I would get that to work in a windows service.

Anyone come across this before or have any ideas?

© Stack Overflow or respective owner

Related posts about app.config

Related posts about windows-services