vote up 1 vote down star
1

I have a small Sharepoint Feature project in VS2008 with STSDev 2008 which comprises of a WebPart, a List and a List Instance (of the aforementioned List). The WebPart depends on the existance of the List as does the List Instance.

Would I be better creating one feature that deployed all three components, or packaging up the three components as individual features and creating feature dependancies in the WebPart and List Instance upon the List?

I can see several advantages and disadvantages:

Pro:

  • simplified testing as the list can be tested seperatly from the WebPart and Instance
  • more extensable as further features can be added that depend on up-level features
  • more efficent, only activate the features you need

Con:

  • increased development time to create features
  • development environment dosn't really allow you to split up features except for as different projects
  • could clutter the Site Features page in Site Settings
flag

69% accept rate

2 Answers

vote up 3 vote down check

I would probably split them out into multiple features so that you can updat ethem seperately if need be. You could always create a parent feature which has ActivationDependencies on the child features. If you mark the child features hidden, the parent feature will automatically activate the child features and they won't clutter up your features page.

link|flag
vote up 0 vote down

Also consider the administration of the features. If you're in a large company environment with lots of features being deployed, you'll want to consider breaking things up. It will help with deployment and, if one of those features become wildly popular while the other two are only somewhat popular, it will save you a ton of time with enhancement requests and bug fixes.

link|flag
I am specificly looking at features that are inter-dependant. That is without one the other will either not work correctly or have little functional purpose. – Richard Slater Apr 1 at 14:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.