Merging Config files
C#
1
Posts
1
Posters
0
Views
1
Watching
-
My application has got 3-4 solution and each solution have few projects in it. Currently all the confiugration data for my application is scattered across various project.config files in individual project. I want to merge all these configuration settings and make a one single config file which will be accessed by all solutions / projects. If possible I would like to read/write this common file using "Properties.Settings" class as we normally read the config files. Can any one give me idea on how to achieve the above thing?