从程序集中查找应用程序配置文件
我使用 Nini 来读取整个应用程序的配置。我在程序集中遇到问题,我想读取主应用程序配置文件(无论 web.config 或 app.config)。
这是标准方式:
private static IConfigSource source = new DotNetConfigSource(DotNetConfigSource.GetFullConfigPath());
程序集的问题是 DotNetConfigSource.GetFullConfigPath()
返回“ assembly.dll.config”,而不是“app.exe.config”或“web.config”。
该怎么办,该怎么办?
I'm using Nini to read config throughout the app. I'm running into a problem in assemblies where I want to read the main applications config file (regardless of web.config or app.config).
This is standard way:
private static IConfigSource source = new DotNetConfigSource(DotNetConfigSource.GetFullConfigPath());
The problem in the case of assemblies is that DotNetConfigSource.GetFullConfigPath()
returns "assembly.dll.config", not "app.exe.config" or "web.config".
What to do, what to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下。
Try that.