views:

65

answers:

1

I'm looking to revamp an old open source project I've started a couple of months ago. I'm a tidiness fanatic, I really try hard to "code like a girl" whenever I can. That's why I've been policing my code with StyleCop, which makes me really happy. Now for some reason I've got the feeling that I've uploaded a pile of junk back then with the first commit, so this time I just want to upload only the actual required files, nothing else.

+1  A: 

With it being an open source project, I would say all source files, and at minimum your csproj and .sln files. You could avoid checking in the .suo files as those are just your IDE options.

Mitchel Sellers