我有几个C#控制台应用程序,需要具有相同的设置集.我想避免重复,并避免为每个应用程序单独的app.config.
有没有办法为应用程序(app1.exe,app2.exe)读取常见的app.config文件(比如common.config).
解决方法
您可以使用以下代码加载外部app.config:
config = ConfigurationManager.OpenExeConfiguration(Path.Combine("C:\test\root","Master.exe")); string logpath = config.AppSettings.Settings["Log.Path"].Value;
并保存设置如下:
config = ConfigurationManager.OpenExeConfiguration(Path.Combine("C:\test\root","Master.exe")); config.AppSettings.Settings["Log.Path"].Value = "C:\newpath"; config.Save();
您可能必须在其中一个应用程序中拥有主配置,并将其余部分指向此.通常,这种方法被认为是不好的做法.锁定文件的不同应用程序可能存在问题.