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

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.

Leave a Comment