c# - Is it possible to have multiple services or applications share one single config file -
if have multiple applications or services share 1 configuration value (e.g. access same database), there way have them share 1 single config file instead of having duplicate values throughout each of configs?
you can use configsource
attribute point specific file.
use same file location multiple .config
files.
you can multiple config sections, 1 file connection strings, 1 app settings etc...
Comments
Post a Comment