vote up 4 vote down star
6

My workshop has recently switched to Subversion from SourceSafe, freeing us from automatic locks. This led to concurrent editing of the Forms, which is wonderful. But when multiple developers commit their changes, the code files created by the designer (all the files named TheFormName.designer.cs) cause conflicts which are very difficult to resolve.

As far as I can tell, this is because the code generated by the designer is heavily re-arranged whenever the user modifies it, no matter how little the actual change really did.

  • How do I make these conflicts easier to resolve?
  • Is there some way to tell the designer to modify the code less?
  • How do you, the experienced C# teams, deal with concurrent modification of a Form?
flag

Never had the problem with designer files (although I don't really do WinForms apps), but it generally does the same with csproj files which is very annoying :-( – Steven Robbins Jan 28 at 7:19
OK, I put a bountey - I really wish I could find a good solution for this. I hope someone can help. – scraimer Jan 31 at 17:45

5 Answers

vote up 0 vote down check

I'm not familiar with C# or the Windows Form Designer, but looking at some designer.cs files I could find online they don't have a particularly complicated structure.

What parts of it are being re-arranged? I guess it's mostly the order of the properties in the InitializeComponent() method that's jumbled up?

If that's the case, you might be able to write a simple script that re-orders those lines alphabetically, say (especially if you never edit these files manually anyway), and use that as a pre-commit hook script in Subversion.

Um, right... scratch that. The big red box at the bottom of that section says you're not supposed to modify transactions in hook scripts. But you might be able to find another way to run that script somewhere between the designer.cs file being changed and it being committed.

Edit:

Actually, given scraimer's comment on this:

Total hack, but in the worst case, just before a merge, I could sort BOTH files, and make the merge simply a line-by-line affair...

Can't you let Subversion set an external merge program? I've been using KDiff3, which can run a preprocessor command before doing diffs or merges, so you could automate that process.

link|flag
That sounds like a really really cool solution. Total hack, but in the worst case, just before a merge, I could sort BOTH files, and make the merge simply a line-by-line affair... Of course, this is somewhat like curing a patient by putting them in a blender and then putting them back together. – scraimer Feb 1 at 18:43
At least make sure you select a 3-way merge tool (like KDiff3). A 2 way merge tool can't really help you in resolving this kind of issues. – Bert Huijben Mar 2 at 14:32
vote up 6 vote down

Here are some things to try:

  • Make things more modular. Use components like User Controls etc. to split forms into multiple, smaller physical files.
  • Use presentation layer design patterns like MVP to move code out of views and into standard POCO classes.
  • Recent versions of SVN allow you to take hard locks - use this to avoid complex merge scenarios.

Hope that helps.

link|flag
Yeah, we've actually been already been making it all modular, just to allow us to work with with VSS, and we use no business code in our presentation layer (which are the designer.cs files). I was hoping for a more elegant solution than SVN locks, though. Thanks! – scraimer Jan 29 at 7:36
Well one "elegant" way would be to code them all by hand! ;-) – Andrew Peters Jan 29 at 17:56
vote up -1 vote down

If you convert files from VSS to Subversion (with migrating history) you should make sure that your sourcefiles are not marked as binary.

Visual Sourcesafe was invented before UTF-8, and it loves to mark all your sourcefiles as binary. But for Subversions to perform automatic merging you really must remove the binary status.

And for major form editting and refactoring I would just recommend, commit early (to publish your refactorings to others) and update often (to make sure you don't refactor stale code).

link|flag
Sorry, these are not binary files, but text files. But your point about early commit is well taken. – scraimer Jan 28 at 11:34
vote up 2 vote down

I'm pretty sure there is no silver bullet for this problem as the designer stomps all over the designer.cs.

All I can suggest is to minimise the use of the designer. Personally I only hook to events in code and only use the designer only for initialisation and positioning. As such it isn't too hard to fathom differences in a changeset ("oh, someone has added a button", "oh, someone has changed how it looks slightly").

link|flag
I guess I really am asking for something as magical as a silver bullet! We're already minimizing the amount of code that goes into the designer.cs, not to mention even the code that got into any part of the GUI. I guess I am hoping for someone to come along with a creative solution... – scraimer Feb 1 at 0:32
vote up -1 vote down

The only way I know of to truely avoid this problem when using a merge style source control system such as subversion is to hand code the forms and not use the designer. Obviously, this would not be good because hand coding these forms can take a while.

The reason this happens is because the control properties are serialized by the designer in the order they are dropped on the form. Cutting and pasting can effect this order as well as moving a control so that it has a new parent (such as moving a control on to a panel when it was previously directly on the form).

I had this problem on a large project and had to imploy a rather ugly approach - diff the designer.cs files against the check-in target revision and manually merge them using a merge tool. This isn't ideal, but it is the only way I see this working consistently with svn or another merge style source control tool.

The other option would be to use a lock approach with source control, as others have pointed out, but this comes with unpleasant side effects as well.

link|flag
Those are the solutions we've already been forced to employ, and they are not very satisfying. But thank you for your advice. – scraimer Feb 1 at 21:03

Your Answer

Get an OpenID
or

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