We are working a couple of people on the same project using Visual Studio 2015 and git. This works reasonably well, expect for the .csproj
file (the project file). Everytime you add a new file to the project, the .csproj
file changes automatically. Hence if two (or more) people adds a file to their local version, it will require a merge from the last one who commits.
Is there a way to avoid this?
Edit: I can fetch, but not pull or commit. If I try to pull, Visual Studio Git wants to merge the remote .csproj
file with my local version. It cannot do this automatically however, and every attempt I have made to assist it results in a non-functional .csproj
file.