Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有一种简单的方法来硬编码设置并仅在引用类库的应用程序在其 app.config 中没有服务模型设置时应用它们?
从类库调用代码的客户端代码将是这样的:
ProgramUpdater programUpdater = new ProgramUpdater(@"path\\to\\my\\program"); if(programUpdater.HasUpdate()) { programUpdater.Update(); }
实际上,当我在 Google 上进行一些额外搜索时,我认为我在一个问题中找到了一些合适的答案。
有趣的是,它没有出现在我最初的搜索中。
这是供将来参考:
如何硬编码服务的默认 WCF 端点?