show/hide this revision's text 2 added 31 characters in body

Regarding the new custom list, this can be done using features. See How to: Create a Custom List Definition for more information. The Visual Studio Extensions for SharePoint (VS2005 / VS2008) will help you to extract the list definition if you've created it through the SharePoint UI. If you are fortunate enough to be using a custom site definition and don't have any webs created yet, you can set your site definition to create the custom list using feature stapling.

If you are attempting to apply these changes to webs that already exist, I would you can still recommend using use a feature to define your custom list. It will just appear as a type of list that can be created. Then to have the custom list automatically created for existing webs or to modify existing lists such as the Announcements list, you should can use a feature receiver. This allows you to run any custom code when the feature is activated. See the MSDN article Feature Events for more information.

Unfortunately there isn't a "nice" way to make a change to a list definition whether stored in a feature or in code and propagate that to

Alternatively, you could not use features at all environmentsas they can be difficult, time consuming and painful. This is presumably because of In fact, this blog post has a good argument against the complexities involvedidea. Another alternative is to look into third party You could try the tool mentioned on that page or other applications such as DocAve Content Manager and SharePoint Site Migration Manager, although I haven't used them.

show/hide this revision's text 1

Regarding the new custom list, this can be done using features. See How to: Create a Custom List Definition for more information. The Visual Studio Extensions for SharePoint (VS2005 / VS2008) will help you to extract the list definition if you've created it through the SharePoint UI. If you are fortunate enough to be using a custom site definition and don't have any webs created yet, you can set your site definition to create the custom list using feature stapling.

If you are attempting to apply these changes to webs that already exist, I would still recommend using a feature to define your custom list. It will just appear as a type of list that can be created. Then to have the custom list automatically created for existing webs or to modify existing lists such as the Announcements list, you should use a feature receiver. This allows you to run any custom code when the feature is activated. See the MSDN article Feature Events for more information.

Unfortunately there isn't a "nice" way to make a change to a list definition whether stored in a feature or in code and propagate that to all environments. This is presumably because of the complexities involved. Another alternative is to look into third party applications such as DocAve Content Manager and SharePoint Site Migration Manager, although I haven't used them.