For c# applications (windows apps), Is it possible to insert an external configuration file to keep the connection strings (a common config file to hold the connection strings). I know that can be done for config files which are in the same folder (or in child folders I gess). But I want that common config (which has connectionString node) to be in the parent folder. And at the same time I need to use the same code to read the connection strings.
I have a folder and files structure like this
Parent Folder
--> common.connections.config
--> Folder 1 (App1.exe)
--> App1.exe.config
--> Folder 2 (App2.exe)
--> App2.exe.config
Can anyone help please..