What are the best practices for dealing with concurrent development in CRM 2011? What is the proper way to deal with changes to customizations by different developers?

Assuming that each developer has their own local dev environment and there is a community dev environment...

How do developers avoid overwriting each other's work when they "check in" / import their customizations with the community development server? How do developers avoid overwriting their local work when they "check out" / export customizations from the community server and then attempt to import them?

What tools are typically used to help automate this process?

link|improve this question

1  
Useful related question I posted stackoverflow.com/questions/6572036/… – Andi Jul 26 '11 at 7:49
feedback

closed as not constructive by Conrad Frix, Will Sep 9 '11 at 20:13

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

Here are a few best practices...

First, is simply the naming convention of web resources. At Customer Effective, we opted for cei_/{project}/{type}/{filename}.{extension}. An example would be something like cei_/BingMaps/html/multiLookup.htm. This way it is easy to find and we are consistent.

Now we don't typically team develop, but if you do then you will certainly want to use an SVN. We use an SVN but it's mainly for backups of the individual and referencing other members stuff.

Another best practice is to have a Dev/UAT/Prod environment. I would also strongly suggest having a Vanilla environment for those who would make a solution for more than one customer.

Lastly, never include a sitemap or ribbon inside of your unmanaged solutions. Instead have a single sitemap solution and a ribbon solution. Otherwise, the most recent unmanaged solution will overwrite the previous if they both share the entity ribbon.

link|improve this answer
feedback

One person on the team is assigned the responsibility of managing customizations. Other developers need to request that that team member make changes to the customizations.

I personally hate this method, but am posting it because I've seen in practice a few times.

link|improve this answer
feedback

A list on a SharePoint site (or something similar) is setup to allow for users to manually indicate that they have "checked out" certain entities.

IMO, this is better than assigning customization changes to a single dev, but there are still issues:

Nothing forces the devs to visit the SharePoint site before "checking out" the entities that they want to update. Nothing forces them to go back to the SharePoint site to indicate that they have "checked in" the entity.

link|improve this answer
feedback

Create a solution, export it and check it into source control. Developers check out the solution file, import, update, export and check in.

This seems to ensure that no one overwrites each other, but I can envison a lot of blocking going on.

link|improve this answer
feedback

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