Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been asked to create a sandboxed SharePoint application/site; multiple developers will be working on this. All the team members are .Net developers. Which is the best/maintainable/professional approach?

Approach 1 - Create pages, lists, workflows etc. in SharePoint and SharePoint designer. Then export the wsp file and import it into visual studio. e.g. do most of the work in the SharePoint ui.

Approach 2 - Build it up using visual studio e.g. modules, elements, feature receivers.

share|improve this question

closed as not constructive by ChrisF, iny, Mike Pennington, C-Pound Guru, Yuck Nov 23 '12 at 1:00

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 1 down vote accepted

It really depends on how much you want to do with the sharepoint application.

Sharepoint Designer has slightly more functionality than the SPS web admin interface, and this connects directly to your SPS instance.

VS will give you far more flixibility but requires greater programming knowledge and (if memory serves me) you will require an instance of SPS installed on your development machine.

share|improve this answer
Correct, if you use Visual Studio, you will need a SharePoint instance running on the same machine. However, you should not run Visual Studio in a SharePoint production environment. – Petri K Nov 22 '12 at 13:52

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