Which files in a Visual C# Studio project don't need to be versioned?

前端 未结 11 1107

I\'m new to Visual C# Studio (actually using the Express edition, but another developer is using the full version), and we are using version control (svn).

It\'s acc

11条回答
  •  日久生厌
    2020-11-30 01:34

    The .sln file defines your solution together with the .proj files (one for each project), so keep them in your svn!

    You can skip the .suo file (personal settings - binary anyway) as well as the bin or obj folders. Also the .cache files can be left.

提交回复
热议问题