从程序集中查找应用程序配置文件

发布于 2024-11-19 13:58:07 字数 426 浏览 3 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

他是夢罘是命 2024-11-26 13:58:07
System.Configuration.Configuration config =
                ConfigurationManager.OpenExeConfiguration(
                ConfigurationUserLevel.None);

string configPath = config.FilePath;

private static IConfigSource source = new DotNetConfigSource(configPath);

尝试一下。

System.Configuration.Configuration config =
                ConfigurationManager.OpenExeConfiguration(
                ConfigurationUserLevel.None);

string configPath = config.FilePath;

private static IConfigSource source = new DotNetConfigSource(configPath);

Try that.

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