We are a small team working on an asp.net web project, as well as a service, both projects depend on a common class library.
We would like the class library settings to be different for each developer (and then for production). Confidential information is included in the settings, such as passwords, as well as host names.
How to assign these parameters?
If I am mistaken, the settings for web.config / application are not good enough, since they do not work for a common class library.
ps: In addition, some variables should be statically linked, while others (such as connection strings) should be dynamic.
c # visual-studio web-config class-library app-config
user145100
source share