I am working on a solution that has multiple projects.
I follow the method described here (the first response that suggest using a common solution item): single app.config multi-project c#
The result is that for each project, the app.config file is copied and renamed like XXX.exe.config.
However, the desirable output is that the config file name remain the same (e.g. App.config) for each project. Because I wanted to put all the executable and the DLLs in the same folder when it's deployed (some executable reference to the same DLL so it make sense to put them all together).
Any suggestion is appreciated.