You cannot directly use one application configuration file, since the name of the .config file must match the name of the executable file (therefore, for example.exe it will be example.exe.config ).
It makes sense to have separate values ββfor different applications, since they are separate applications.
If there are configuration sections that you want to use, you can use the configSource attribute to point to the file. The appSettings section also has a special file attribute, which you can use in the same way.
If there are specific configuration values ββthat are common to all applications, you can put them in the machine.config for the version you are using.
Odded source share