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

前端 未结 11 1110

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

    Dont include
    bin
    obj
    *.suo
    *.user
    _Resharper* (if you have Resharper)

    Include
    *.sln
    *.csproj

    You can also check the .gitignore file for visual studio projects on github.

提交回复
热议问题