无法从同一类库中的 app.config 文件读取设置
我正在尝试从我的 app.config 文件中读取类文件中的设置。 这两个文件都位于 ClassLibrary 中。文件夹结构如下:
ClassLibrary
-Folder1
--Folder2
---ClassFile.cs
App.config
返回值为Null。 请指教。
I am trying to read settings in a class file, from my app.config file.
Both files are in a ClassLibrary. Folder structure is as follows:
ClassLibrary
-Folder1
--Folder2
---ClassFile.cs
App.config
The values returned are Null.
Kindly advise.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
类库没有配置文件——应用程序有。
原因之一是类库不能直接执行——它们只能在应用程序的上下文中运行。
将
app.config
文件放在您的应用程序/测试工具(例如 exe 或网站)中。此时库将能够读取配置。注意:您应该将配置作为依赖项传递到您的库中。这是更好的设计 - 应用程序可以告诉库如何配置,并且还有可测试性的额外好处(您可以测试而无需拥有.config)。
有关更多详细信息,请参阅这个 SO答案。
Class libraries do not have configuration files - applications do.
One reason is that class libraries cannot be directly executed - they can only be run in the context of an application.
Have the
app.config
file in your application/test harness (exe or website, for example). The library will be able to read the configuration at that point.Note: You should be passing configuration into your library as a dependency. This is better design - the application can tell the library how to be configured and there is the added bonus of testability (you can test without having to have a .config).
See this SO answer for more details.