I want to start using Mercurial on a VB.Net project, but I’m not sure which files should I add. Do I include the Project.sln file, bin/ and obj/ folders?
I want to start using Mercurial on a VB.Net project, but I’m not sure
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
With every source control, you should only include source files (i.e. files that are not generated during the build process), and the complete set of files necessary to build a solution. This does include the
.slnfile (for ease of use of the project in Visual Studio) but not thebinandobjfolders, nor (usually) the user-specific settings (.suo), nor auto-generated files that can be re-generated.