Script-Based Configuration in .net?

Posted by Michael Stum on Stack Overflow See other posts from Stack Overflow or by Michael Stum
Published on 2011-01-06T00:36:52Z Indexed on 2011/01/06 0:53 UTC
Read the original article Hit count: 170

Filed under:
|

One of the downsides of web.config/app.config is that it's just Magic Strings everywhere, since it's just an XML file.

Interpreted languages like PHP or Ruby have the advantage that the configuration is just code that is executed. In .net, doing stuff in code requires a redeployment, which defeats the purpose.

Now, before I build my own web.config replacement based on Boo or PowerShell I wanted to know if there is an existing one?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about web-config