Deploying a Project Task List Definition

Walkthrough: Deploying a Project Task List Definition

        

This walkthrough shows you how to use Visual Studio 2010 to create, customize, debug, and deploy a SharePoint list definition to track project tasks.

This walkthrough illustrates the following tasks:

  • Creating a SharePoint list definition project that contains tasks.

  • Adding the list definition to a SharePoint feature.

  • Adding an event receiver to the list.

  • Creating and customizing a SharePoint package to deploy your feature.

  • Building and deploying your SharePoint solution.

NoteNote

Your computer might show different names or locations for some of the Visual Studio user interface elements in the following instructions. The Visual Studio edition that you have and the settings that you use determine these elements. For more information, see Visual Studio Settings.

You need the following components to complete this walkthrough:

Create a SharePoint list definition project and associate the list definition with tasks.

To create a SharePoint list definition project

  1. Open the New Project dialog box, expand the SharePoint node, and then click 2010.

  2. In the Templates pane, select ListDefinition, name the project ProjectTaskList, and then click OK.

    The SharePoint Customization Wizard appears.

  3. Type the local SharePoint site that you use for debugging, and then click Next.

  4. For the Display Name of the list, type Project Task List.

  5. In the What is the type of the list definition drop-down menu, select Tasks, and then click Finish.

    The list definition, list instance, feature, and package appear in Solution Explorer.

In the task list definition, you can add an event receiver that automatically sets the due date and description of the task.The following procedure adds a simple event handler to the list instance as an event receiver.

To add an event receiver

  1. Right-click the project node, point to Add, and then click New Item.

  2. In the list of SharePoint 2010 templates, select Event Receiver and name it ProjectTaskListEventReceiver.

    The SharePoint Customization Wizard appears.

  3. On the Choose Event Receiver Settings page, select List Item Events as the event receiver type.

  4. Set the Event source item to ProjectTaskList.

  5. In the list of events to handle, check the box next to An item was added and then click Finish.

    A new event receiver node is added to the project with a code file that is named ProjectTaskListEventReceiver.

  6. Add code to the ItemAdded method in the ProjectTaskListEventReceiver code file.Each time a new task is added, a default due date and a description is added to the task.The default due date is July 1, 2009.

    C#
    VB
     public override void ItemAdded(SPItemEventProperties properties)
    {
        base.ItemAdded(properties);
        SPWeb web = properties.OpenWeb();
        properties.ListItem["Due Date"] = "July 1, 2009";
        properties.ListItem["Description"] = "This is a critical task.";
        properties.ListItem.Update(); 
    }  
    
    
    

When you create a SharePoint solution, Visual Studio automatically creates features for the default project items.You can customize the project task list settings for the SharePoint site by using the Feature Designer.

To customize the project task list feature

  1. In Solution Explorer, expand Features.

  2. Double click Feature1.

  3. In the Title field, type Project Task List Feature.

  4. In the Scope drop-down menu, select Web.

  5. In the Properties window, type 1.0.0.0 as the value for the Version property.

When you create a SharePoint project, Visual Studio automatically adds the features that contain the default project items to the package.You can customize the project task list settings for the SharePoint site by using the Package Designer.

To customize the project task list package

  1. In SolutionExplorer, double-click Package.

  2. In the Name field, type ProjectTaskListPackage.

  3. Select Reset WebServer.

When you run the project, the SharePoint site opens.However, you must manually navigate to the location of the task list.

To test the project task list

  1. Press F5 to build and deploy your project task list.

    The SharePoint site opens.

  2. Click Home.

  3. In the left sidebar, click ProjectTaskList - ListInstance1.

    The Project Task List page appears.

  4. In the List Tools tab, click Items.

  5. Click New Item.

  6. Click Task.

  7. In the Title text box, type Task1.

  8. Click Save.

    After the site is refreshed, the Task1 task appears with a due date of 7/1/2009.

  9. Click Task1.

    The detailed view of the task appears, and the description shows "This is a critical task."

After you build and test the project task list, you can deploy it to the local system or a remote system.The local system is the same computer on which you developed the solution, whereas a remote system is a different computer.

To deploy the project task list to the local system

  • Click Deploy on the Build menu.

    Visual Studio recycles the IIS application pool, retracts any existing versions of the solution, copies the solution package (.wsp) file to SharePoint, and then activates its features.You can now use the solution in SharePoint.For more information about deployment configuration steps, see How to: Edit a SharePoint Deployment Configuration.

To deploy the project task list to a remote system

  1. Click Package on the Build menu.

    This creates a .wsp file for the solution in your project’s binary debug folder (…\<Project Name>\<Project Name>\bin\Debug).

  2. Copy the .wsp file to the remote SharePoint system.

  3. Use the PowerShell Add-SPUserSolution command to install the package on the remote SharePoint installation.(For farm solutions, use the Add-SPSolution command.)

    For example, Add-SPUserSolution C:\MyProjects\ProjectTaskList\ProjectTaskList\bin\Debug\ProjectTaskList.wsp.

  4. Use the PowerShell Install-SPUserSolution command to deploy the solution.(For farm solutions, use the Install-SPSolution command.)

    For example, Install-SPUserSolution –Identity ProjectTaskList.wsp –Site http://NewSiteName.

    For more information about remote deployment, see Using Solutions and Adding and Deploying Solutions with PowerShell in SharePoint 2010.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值