无法引用Microsoft.SharePoint.Client.dll

时间:2016-01-13 16:08:52

标签: c# sharepoint dll sharepoint-2010 client-object-model

我正在创建一个将访问sharepoint网站的Windows应用程序。 因为我需要在项目中使用Microsoft.SharePoint.Client.dll和Microsoft.SharePoint.Client.runtime.dll。

我已将它们添加到我的参考文献中,但无法使用它。有人能帮助我吗?

请在此处查看问题:Issue

using Microsoft.SharePoint.Client;

namespace WpfApplication3
{
 public partial class MainWindow : Window
 {
    public MainWindow()
    {
        ClientContext context = new ClientContext("http://hp");
        InitializeComponent();
    }
 }
}

1 个答案:

答案 0 :(得分:2)

屏幕截图的底部会明确告诉您哪些内容有误。您似乎将.NET 4.0 Client Profile定位为不包含对System.Web的引用,而System.Web是SharePoint Client的依赖项。

重新定位.NET 4.0的项目。

如果您正在使用Visual Studio,请转到Project>属性>申请>目标框架>将其更改为4.0(非客户端配置文件)

enter image description here