Extending the SharePoint Project System
You can create SharePoint solutions by using a set of project templates and item templates in Visual Studio. These templates meet the requirements of many development scenarios, but you might discover some cases where they don't provide functionality that you require. In these cases, you can extend the SharePoint project system.
Overview of the SharePoint Project System
The SharePoint project system is based on the fundamental component of SharePoint project items. A SharePoint project item represents a single SharePoint customization, such as a list definition, Web Part, or content type.
A SharePoint project is a Visual Studio project that includes one or more SharePoint project items. SharePoint projects also contain additional components that define how project items are grouped into Features and packages for deployment.
For more information about the contents of SharePoint project items and SharePoint projects, see Creating Item Templates and Project Templates for SharePoint Project Items.
How to Extend the SharePoint Project System
You can extend the SharePoint project system in the following ways:
Define your own SharePoint project item types and associate them with new item templates or project templates in Visual Studio. For example, you can define a SharePoint project item type for creating a custom action or a field. For more information, see Defining Custom SharePoint Project Item Types.
Extend SharePoint project item types that are already installed in Visual Studio. For example, you can add a shortcut menu item to a project item in Solution Explorer and customize the project item when a developer chooses the menu item. For more information, see Extending SharePoint Project Items.
Extend SharePoint projects. For example, you can add event handlers to perform specific tasks when items are added or removed from SharePoint projects. For more information, see Extending SharePoint Projects.
Extend the packaging and deployment behavior of SharePoint project items and SharePoint projects. For example, you can create your own deployment steps to execute when you deploy or retract a project, or you can perform additional custom tasks when Visual Studio executes certain deployment steps. For more information, see Extending SharePoint Packaging and Deployment.
Common Development Tasks
You can perform the following common tasks in extensions of the SharePoint project system:
Save custom string data with project items and in several different types of project files. For more information, see Saving Data in Extensions of the SharePoint Project System.
Convert an object in the SharePoint project system to a corresponding object in the Visual Studio automation object model or integration object model, or vice versa. For more information, see Converting Between SharePoint Project System Types and Other Visual Studio Project Types.
See Also
Concepts
Defining Custom SharePoint Project Item Types
Extending SharePoint Project Items
Extending SharePoint Packaging and Deployment
Saving Data in Extensions of the SharePoint Project System
Converting Between SharePoint Project System Types and Other Visual Studio Project Types
Programming Concepts and Features for SharePoint Tools Extensions