Recently, I joined a company that has, over the years, had many developers of varying quality work.
The projects that have been created depend on the results of other projects. However, instead of creating dependencies in the usual way and maintaining the code, the DLLs were copied from one place to another and referenced from there.
Is there an easy way to update all my DLLs in the parent folder to the latest version of this (by timestamp) across the entire range of folders?
So, the whole process:
- Compile all projects and all solutions in the root folder.
- Find and update all other copies of the output files.
- Recompile everything and find out what breaks.
- Update source code and update links.
The step of the task is 2.
(I fully understand that this can break the material)
I use Visual Studio 2005 and C # to create a DLL, but I want to update the files rather than the code.
source share