Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which SDK do I need to start using sharepoint.client.dll?

I want to test drive Microsoft.SharePoint.Client API. http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.aspx

How can I get Microsoft.SharePoint.Client.dll?

The 'SharePoint 2010 Reference: Software Development Kit' has samples. http://www.microsoft.com/downloads/en/details.aspx?displaylang=en&FamilyID=f0c9daf3-4c54-45ed-9bde-7b4d83a8f26f

Is there an SDK that has the dll?

like image 310
bookclub Avatar asked Feb 10 '11 19:02

bookclub


People also ask

What is SharePoint client Components SDK?

What is SharePoint Online client components SDK? The SharePoint Online Client Components SDK provides the tools necessary to develop applications that interact with SharePoint Online. It includes libraries for accessing SharePoint data and functionality and extensive documentation on how to use these libraries.

How do I use SharePoint Online client Components SDK?

Download and install SharePoint Online Client Components SDK from https://www.microsoft.com/en-us/download/details.aspx?id=42038. Once installed, It creates assembly (DLL) files in 16 hive on your computer at C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\.

Where is Microsoft SharePoint dll?

As you have SharePoint installed on the development machine (you must), hit Browse... on the Add reference dialog, and you can find the DLL from C:\Program Files\Common Files\microsoft shared\Web Server Extensions\14\ISAPI .

Does SharePoint need to be installed for Csom?

To connect to SharePoint Online, we will require SharePoint Client Object Model (CSOM) SDK.


2 Answers

This blog annouces a 466K redist.

http://blogs.msdn.com/b/sharepointdeveloperdocs/archive/2010/11/18/sharepoint-client-object-model-redistributable-released.aspx

The 'SharePoint Foundation 2010 Client Object Model Redistributable' is here.

http://www.microsoft.com/downloads/en/details.aspx?FamilyID=b4579045-b183-4ed4-bf61-dc2f0deabe47

contains

Microsoft.SharePoint.Client.Runtime.dll

Microsoft.SharePoint.Client.Silverlight.Runtime.dll

Microsoft.SharePoint.Client.Silverlight.dll

Microsoft.SharePoint.Client.dll

like image 145
bookclub Avatar answered Sep 30 '22 20:09

bookclub


For me these files lived in:

C:\Program Files\Common Files\Microsoft Shared\SharePoint Client

Microsoft.SharePoint.Client.dll
Microsoft.SharePoint.Client.Runtime.dll
Microsoft.SharePoint.Client.Silverlight.dll
Microsoft.SharePoint.Client.Silverlight.Runtime.dll

other have reported them being in: %ProgramFiles%\Common Files\Microsoft Shared\web server extensions\14\ISAPI

which did not exist for me.

like image 34
Rich Day Avatar answered Sep 30 '22 20:09

Rich Day