一个可执行文件的多个 app.config 文件
我有一个 WindowsForms 项目,它使用其应用程序配置来存储一些应用程序设置。我们将其称为 WinFormsApp.exe
WinFormsApp 使用基本上公开 WCF 服务器连接的库中的类。我们称其为 WCFClass.dll
WCFClass.dll 是解决方案中的一个单独项目,它有自己的 app.config,它保存 WCF 配置。
如何在 WinFormsApp.exe 启动时加载两个配置文件,这样我就不必手动将两个 app.config 的内容合并为一个?
I have a WindowsForms project that uses its app config to store some appSettings. Let's call it WinFormsApp.exe
WinFormsApp uses classes from a library that basicaly exposes WCF server connectivity. Let's call it WCFClass.dll
WCFClass.dll is a separate project in a solution and it has its own app.config it which is holds the WCF config.
How can I have two config files loaded at the start of WinFormsApp.exe, so that I don't have to manually merge the contents of two app.configs in one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 WCF,您必须合并这些配置 -
system.serviceModel
部分必须位于主应用程序配置中。不使用.dll 的配置文件。它仅由 WCF 测试客户端使用。For WCF you must merge these configs -
system.serviceModel
section must be in the main application config. Configuration file for .dll is not used. It is used only by WCF test client.