将 app.config 重命名为 dllname.dll.config

发布于 2024-10-04 07:42:05 字数 237 浏览 2 评论 0原文

我有一个类库,其中有一个 app.config ,构建时它将 app.config 与 dll 一起放在我选择的输出目录中。

不过,我不希望它被命名为 app.config,如果我有另一个拥有自己的 dll 的组件,我会看到发生的混乱。

我一直在研究另一个项目,它正是这样做的,但我不明白为什么它输出 dllname.dll.config 而我的总是 app.config。

有什么想法吗?

谢谢

I have a class library, which has an app.config and when built it put the app.config along with the dll in the output directory I have chosen.

I don't want it to be name app.config though, if I have another component that has it's own dll, I can see confusion happening.

I've been looking at another project, that does exactly that, but I can't see why it outputs dllname.dll.config and mine always app.config.

Any ideas?

Thx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

最美不过初阳 2024-10-11 07:42:05

您可能已经设置了 app.config复制到输出目录 设置。

但是:在类库中,app.config 是没有用的。

请注意,每个应用程序只能有一个配置文件。正在从 读取配置(在执行时) +“.config”

You probably have set the Copy to output directory setting of the app.config.

BUT: In a class library, an app.config is useless.

Note, that you can only have one config file per application. The configuration is being read (at execution time) from <executing assembly file name> + ".config".

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