类型或命名空间名称' SharePoint'在命名空间中不存在' Microsoft' (你错过了一个程序集引用吗?)

时间:2015-02-15 13:32:28

标签: c# .net sharepoint sharepoint-2010 namespaces

我正在使用C#中的Sharepoint Client Object Model API构建Sharepoint实用程序。我在我的应用程序中包含了对以下库的引用:

using Microsoft.SharePoint.Client;

我可以在我的应用程序中使用ClientContext类,没有任何问题,如:

ClientContext ctxt = new ClientContext(siteURL);
ctxt.Credentials = websService.Credentials;
Web site = ctxt.Web;

但是当我尝试构建我的应用程序时,我收到以下错误:

  

类型或命名空间名称' SharePoint'在命名空间中不存在' Microsoft' (你错过了一个程序集引用吗?)

我搜索了更多,发现.NET Framework的版本应该是3.5,但它已经设置为3.5。

任何人都可以指导我出错的地方以及造成这个问题的原因。

仅供参考 - 我使用Visual Studio 2013开发应用程序。

该库的路径是: C:\ Program Files \ Common Files \ microsoft shared \ Web Server Extensions \ 15 \ ISAPI \ Microsoft.SharePoint.Client.dll

运行时版本: v4.0.30319  版本: 15.0.0.0

0 个答案:

没有答案