以编程方式将部分添加到从 app.config 读取的配置中
我正在开发一个组件/组件,该组件/组件将分发给其他开发人员并包含在他们的系统中。
为了最大限度地减少他们必须做的工作,所有配置都在单独的文件(my.config)中完成。
我当前的问题是我正在使用的库需要将配置添加到应用程序的 app.config 文件中。 我无法修改它,以便它读取我的自定义配置文件。
有什么方法可以将部分/设置添加到当前配置,以便它的行为就像从 app.config 中读取一样?
我可以添加到 app.config,因此它必须仅在运行时工作。
谢谢,乔纳斯
I am working on a component/assembly that is to be distributed to other developers and included in their systems.
In order to minimize the work they have to do, all configuration is done in a seperate file (my.config).
My current problem is that a library I am using requires configuration to be added to the app.config file of the application. I have no way of modifying this, so that it reads my custom config file.
Is there any way to add a section/setting to the current config, so that it behaves as if it was read from the app.config?
I can add to the app.config, so it must work at runtime only.
Thanks, Jonas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您无法在不更改底层文件的情况下更新配置。 这是一个只读的东西。
I don't think you can update the configuration without changing the underlying file. It's a read-only thing.