0

我是 Sharepoint(2010)的新手。我提供了一个已经托管的 Sharepoint 站点,我必须EventReceiverFormLibrary. 所以我的问题是如何添加修改托管的 Sharepoint 站点。

有人可以解释一下如何更新(添加eventreceiver(VS2010)和部署)Sharepoint 站点的过程。

我已经安装了 Sharepoint Server 2010,并且我知道如何添加eventreceivers到本地 Sharepoint 站点上的库/列表中。

4

1 回答 1

1

在“本地站点”上部署项目后,您将获得WSP文件,将此文件带到服务器并使用以下 powershell 命令部署它

添加wsp文件

Add-SPSolution c:\code\SharePointProject2\bin\debug\SharePointProject2.wsp

正在安装 wsp 文件

Install-SPSolution –Identity SharePointProject2.wsp –WebApplication http://sp2010 -GACDeployment

有关这些命令的更多详细信息,请查看此链接。

http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2009/12/02/adding-and-deploying-solutions-with-powershell-in-sharepoint-2010.aspx

于 2013-09-23T13:25:27.970 回答