Guidelines for hosting VisualStudio projects on github
c#, git, github, visual-studio
Solution
You can use GitHub's default .gitignore for it:
https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
Problem
I'd like to host some of my C# VisualStudio 2010 projects on github. I'm guessing that it's good practice to at least add a minimal `.git/info/exclude` file. For my FluentWpf project, I've got this in my `exclude` file: ``` FluentWpf/bin/* FluentWpf/obj/* ``` Are there any other best practices to follow before checking my projects into git?