如何在多个应用程序之间共享配置设置
我有一个项目,其中有多个具有一些通用配置值的应用程序。 我想要一个共享的 .config 文件,可供所有使用 .Net 配置对象模型的应用程序使用。 每个应用程序也将有自己的 app.config 文件
如何最好地做到这一点。 我宁愿尽可能避免使用注册表。 在查看文档时,OpenExeConfiguration(string exePath) 方法似乎有希望访问指定的配置文件。 这是一个合理的做法吗? 还有其他建议吗?
I have a project where there are multiple applications that have some common configuration values. I would like to have a shared .config file that is available to all of the applications using the .Net configuration object model. Each application would also have its own app.config file
How can this best be done. I'd rather avoid using the registry as much as possible. In looking through the documentation, the OpenExeConfiguration(string exePath) method seems promising for accessing a specified config file. Is this a reasonable approach? Any other suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
app.config 中的某些部分允许引用外部文件。
Some sections in the app.config allow for a reference to an external file.
我会将价值放在机器配置中。 然后,您可以通过将其放入单独的应用程序配置中来覆盖您需要的任何值。
I would place value in the machine config. You can then override any value you need by putting it in the individual app config.
这里讨论解决 OpenExeConfiguration 这可能会有所帮助。
Here's a discussion that addresses OpenExeConfiguration which may be helpful.