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

前端 未结 11 1086

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:36

    Shouldn't be versioned:

    • .csproj.user is the user's project file settings (e.g. startup project)
    • .suo is the user's solution file settings

    Should be versioned:

    • .sln is the solution file itself (what projects it contains etc)
    • .csproj is the project file

    I'm not sure about "contentproj" but it sounds like it's a project file which should be under svn.

提交回复
热议问题