如何在多个应用程序之间共享配置设置

发布于 2024-07-08 02:56:13 字数 238 浏览 11 评论 0原文

我有一个项目,其中有多个具有一些通用配置值的应用程序。 我想要一个共享的 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

哀由 2024-07-15 02:56:13

app.config 中的某些部分允许引用外部文件。

<appSetting configSource="somefile.config"/>

Some sections in the app.config allow for a reference to an external file.

<appSetting configSource="somefile.config"/>
转身以后 2024-07-15 02:56:13

我会将价值放在机器配置中。 然后,您可以通过将其放入单独的应用程序配置中来覆盖您需要的任何值。

I would place value in the machine config. You can then override any value you need by putting it in the individual app config.

魂ガ小子 2024-07-15 02:56:13

这里讨论解决 OpenExeConfiguration 这可能会有所帮助。

Here's a discussion that addresses OpenExeConfiguration which may be helpful.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文