I've recently joined a company which has had a number of developers of varying quality work for them over the years.
The projects which have been created rely on outputs from other projects. However instead of creating dependencies in the normal manner and maintaining the code, DLLs have been copied from one place to another and referenced from there.
Is there an easy way to update all of my DLLs under a parent folder to the most recent version of that (by timestamp) accross the whole range of folders ?
So the process in summary:
- Compile all of the projects and solutions all in a root folder.
- Find and update all other copies of the output files.
- Recompile everything and find out what breaks.
- Update source code and update references.
The problem step is 2.
(I'm quite aware that this may break stuff)
I'm using Visual Studio 2005 and C# to create the DLLs, however I want to update the files rather than the code preferably.