What is recommended for sharing configuration data amongst several related applications in a winforms solution? The two possible solutions I envisage are using a custom section in the machine.config (?) file, and the other is to create an extra config service application that maintains settings via its Properties class, and handles get and set requests for these settings from all the other applications.
One issue with the config service app is that you then potentially need to authenticate/authorize callers of the service if the settings contain sensitive data (such as database passwords). May or may not be an issue depending on your environment.
Similarly you could use some other shared resource to store the settings (a shared XML file, a database), but of course you need to "bootstrap" in some way, i.e. each application will have to have information to locate the shared resource (URL of the configuration service, location of an XML file, connection string for the config database).
Another point is that a config service is potentially introducing an additional single point of failure for all dependent apps. Or you can have redundant config services, and then you're back to the issue of synchronisation - complexity that's often not justified just to save the effort of updating multiple config files.
Personally I usually live with independent config files in each app. In some cases providing tools to admins to automate updates to multiple config files (e.g. to change database passwords that are shared across multiple apps).