Hello,
We're a small team, working on a asp.net web project, as well as service, both projects dependent on a shared class library.
We'd like to have the class library settings different per developer (and later on for production). In settings are included sensitive information, such as passwords, as well as hostnames.
How should we assign these settings ?
Unless I'm wrong, web.config/application settings aren't good enough, as they don't work for the shared class library.
ps: Also, some variables should be statically linked, and the rest (such as connectionstrings) should be dynamic.