Should I add .vcxproj.filter files to source control?

前端 未结 4 1997
情话喂你
情话喂你 2021-01-31 01:00

While evaluating Visual Studio 2010 Beta 2, I see that in the converted directory, my vcproj files became vcxproj files. There are also

4条回答
  •  野的像风
    2021-01-31 01:13

    I just found that if you use Git you can mark .filter files to be treated as a union for merging to make it simpler. Just add the line:

    *.vcxproj.filters merge=union
    

    to your .gitattributes file.

    See Using .gitattributes to avoid merge conflicts for more details.

提交回复
热议问题