如何使用 System.ServiceModel 在关联的配置文件中启用智能感知
我发现的所有涉及智能感知的问题似乎都涉及自定义配置设置。我正在尝试在 .net 标准部分上获取智能感知,该部分已从 web.config 移至 service.config 中。
有办法吗?
All the questions I've found referring to intellisense seem to refer to custom configuration settings. i'm trying to get intellisense on a .net standard section that's been moved out of web.config into service.config.
Is there a way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先你需要有 Visual 2012 或更高版本。这是确保您安装了最新的架构文件和引用。
但主要是关于如何创建根 web.config 或 app.config 文件。
在你的根配置(app.config/web.config)中,你需要像这样指定WCF服务模型关联的配置文件
,然后确保你的,比方说,绑定.config文件以行为节点开头,
使用configSource确实可以帮助保留配置文件可读。
Firstly you need to have Visual 2012 or higher. This is ensure that you have the latest schema files installed and references.
but mostly its all about how to create your root web.config or app.config file.
in your root config (app.config/web.config) you need to specify WCF service model associated config files like this
then make sure your, say, bindings.config file starts with the behaviors node
using configSource can really help keep the configuration files readable.