将 app.config 重命名为 dllname.dll.config
我有一个类库,其中有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能已经设置了
app.config
的复制到输出目录
设置。但是:在类库中,
app.config
是没有用的。请注意,每个应用程序只能有一个配置文件。正在从
读取配置(在执行时) +“.config”
。You probably have set the
Copy to output directory
setting of theapp.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"
.