SLN (Solution) - solution files. It stores information about the collection of projects that make up everything that you develop. They contain projects, control source settings, or any other things globally.
CSProj (project file) are the actual code projects (C # libraries, WCF services, etc.). It stores information at the project level. It includes all relevant links, Classess, etc.
SUO (solution user settings) are user settings files. Completely disposable, you can delete it, and the most common thing that you lose is breakpoints.
Click everything except SUO settings files.
Do not include the bin, debug, obj directory. The only DLLs (or compiled / generated objects) that you should include are those that are external to your application.
Nix 06 Oct 2018-10-10 14:59
source share