码迷,mamicode.com
首页 > Web开发 > 详细

.net 未被引用的错误

时间:2017-08-15 15:12:33      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:bindings   mode   service   .config   mod   com   poi   类型   技术分享   

 

 

  开发的时候遇到了一个错误,如下:

  错误 1 类型“System.ServiceModel.ClientBase`1<T0>”在未被引用的程序集中定义。

我原本以为是版本号的问题,添加了引用也没什么卵用...解决方法如下:

把另一个解决方案的App.config里面的这段代码复制过来就好了

  <system.serviceModel>
        <bindings>
            <basicHttpBinding>
                <binding name="PubSoap" />
            </basicHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://www.waterlevel.cn/dbcenter/FetchServices/pub.asmx"
                binding="basicHttpBinding" bindingConfiguration="PubSoap"
                contract="ServiceReference1.PubSoap" name="PubSoap" />
        </client>
    </system.serviceModel>

技术分享

 

.net 未被引用的错误

标签:bindings   mode   service   .config   mod   com   poi   类型   技术分享   

原文地址:http://www.cnblogs.com/yunquan/p/7364921.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!