Version Tracking?

Jose Cuervo

Member
Joined
Jul 14, 2010
Messages
14
Programming Experience
1-3
As my progs are starting to become slightly more complicated, i am looking for advice on how to keep track of versions etc?
I have my main exe's, but also starting to make use dll's, and even some apps share my dll's and finding it a bit of a pain in the neck to try keep on top of everything.

Is there something that will make my life infinitely easier?
 
Start using source control. There are various free options out there.

Also, when you create a project that needs to reference an existing DLL, add a References folder to your project and put the compiled DLL into there and reference that. That way, any changes you make to that library won't affect and possibly break, that application. You can update the referenced DLL if and when you're ready.
 
Back
Top