views:

79

answers:

2

How can register the dll in the sharepoint. There is any tool or command available?. please provide the details like source location

A: 

You have to add this to gac

Example

C:\Program Files\Microsoft Visual Studio 8\SDK\V2.0\Bin\gacutil.exe /i  "C:\MyPath\MyDll.dll"
Vash
+3  A: 

The only good way to deploy assembly to SharePoint is to use SharePoint Solution. So the assembly will be deployed to all servers in your farm.

If you're using SharePoint 2007: http://wspbuilder.codeplex.com/Release/ProjectReleases.aspx

If you're using SharePoint 2010, use Visual Studio 2010 with (included) SharePoint extensions.

To get started: http://msdn.microsoft.com/sharepoint

Nico