In recent years, I have written a lot of software, most of which tend to share one or more common libraries. (The most common library that is used to call SQL stored procedures and returned arrays of objects)
I am not happy with the way I manage libraries, and I am looking for suggestions to improve the way I work.
The first time I created what is now a shared library, I added the library as a separate class library project as part of the solution.
Now that I am launching a new solution, and I know that I will need the library that I already have, I will go and find the library project and copy the files to the new solution.
This leaves me with several copies of the same library project placed around my file system (and SVN server), and it just isn't.
Is there a better way to work, so I only have one main copy of this library that all solutions share, and not every solution that has its own copy of the library project?
c # visual-studio-2008 projects-and-solutions shared-libraries
Bryan
source share