How I deal with Visual Studio solution and project files in Git?

我们两清 提交于 2020-04-07 11:30:48

问题


I usually work with .NET using Git for versioning. In my team, we work in parallel and we often commit our code to integrate in the application. Everything is fine BUT the Visual Studio's solution and project files. We found two ways:

  1. Never commit those files, everyone has his own
  2. Include those file in the version system

Both ways have pros&cons, but basically we struggle every time we pull from central repo. Here some spare issues we found: (in parentesis, the reference to the above list)

  • We have to include other's files in the project (1) or include our newest (2)
  • If we work on different architectures (x86/x64) we have to manually change .csproj files (2)
  • Same issues replied for references and NuGet packages

and so on. Is there a proper workflow I can use?


回答1:


Committing .sln and .csproj files is usually the best practice (as in this answer), but merging requires some attention.
See "Why are my .csproj files getting messed up after a git rebase?".

*.csproj -text merge=union (see below)
*.sln -text merge=unionv

Or you can give up on .csproj and regenerate them locally as in this tweet.
Another reason to ignore those csproj files is if they are regenerated, as in this context

yellowblood warns (in the comments) about serious conflict issue with csproj file when used with the merge=union strategy.
That echoes the article "Merge conflicts in csproj files".
That is why there is a suggestion for VS IDE should support file patterns in project files (in order to not modify the .csproj file if one add a new .cs file that fits that pattern).

It's been suggested that if Visual Studio sorted its elements first, that would help mitigate the problem.
That helps reduce the incidental conflicts caused by Visual Studio's apparent non-deterministic sort of elements.
But it doesn't make the issue of merge conflicts go away.




回答2:


In our project we check these into version control. We started with the .gitignore from github and a simple .gitattributes file:

# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp

This is because the union merge strategy can actually be dangerous for these files, see Merge conflicts in csproj files for details why this is not always safe and is probably not what you want.

You'll generally get merge conflicts every time but they're really easy to handle quickly in Visual Studio. An example case is adding a new empty project to a solution and committing it, then having multiple team members add different files to the project.

In theory you could have a custom merge driver defined that handles xml merges better, but I haven't seen that done by anyone else yet.



来源:https://stackoverflow.com/questions/21511959/how-i-deal-with-visual-studio-solution-and-project-files-in-git

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!