I have a project in which there are several applications that have some common configuration values. I would like to have a common .config file that is accessible to all applications using the .Net configuration object model. Each application also has its own app.config file.
What is the best way to do this? I would prefer not to use the registry as much as possible. When viewing the documentation, the OpenExeConfiguration (string exePath) method seems promising for accessing the specified configuration file. Is this a smart approach? Any other suggestions?
E brown
source share