alphadogg
alphadogg

Reputation: 12920

Does the order of items in a csproj file matter?

I would like to programatically manage the VS2008 csproj files in our solution across the team. We get occasional merge issues (in Hg) simply because two developers add different new files in a project, but they end up in the "same place" in the csproj file and trigger the need to "resolve the conflict". Sometimes, one tag gets lost and triggers build errors.

Upvotes: 6

Views: 1557

Answers (1)

Mike Cole
Mike Cole

Reputation: 14723

Yes, you can just merge it. The order makes no difference. Will carry through to 2010/2012.

Upvotes: 4

Related Questions