Reputation: 2524
I find this page very useful in distinguishing which files should be checked in to the Version Control System in Delphi. Is there a similar page that shows which files in VB.Net should be checked in to the repository?
Upvotes: 3
Views: 1679
Reputation: 2524
By using Ankhsvn, I didn't have to worry on which files to be checked in because this tool knows it all.
Upvotes: 1
Reputation: 30398
From the main directory for your project:
In general don’t add any files from the obj or bin directory. These folders store built exes and intermediate files created by the compiler. You might want to keep the built EXE or DLL files in VCS, depending on personal preference.
Upvotes: 2
Reputation: 4657
Dean's answer is about as good as it gets. Most people make use of Visual SourceSafe or Visual Studio Team Foundation Server, which fully integrates with the Visual Studio environment and is able to automatically pick out the essential files.
But people who want to make use of some other VCS do ask, and sometime get a good answer:
http://www.codeproject.com/Messages/3645669/Files-in-a-VB-NET-project-to-put-under-Version-con.aspx
This one's about Visual SourceSafe (now regarded as obsolete): http://msdn.microsoft.com/en-us/library/ms972977.aspx
Upvotes: 0
Reputation: 5946
I would recommend (from bitter experience) not checking in
Hope this helps
Upvotes: 5