I was interested to know what structures you use for your projects?
In cases where I work, developers have a shared folder named AssemblyCache (\\ MACHINENAME \ AssemblyCache), which is mapped to R: \ objects through a GPO in Windows 2008 AD (linked to the Developers developer group).
Our common components have post-build events that copy them something like this:
R: \. Net% VERSION% \ Project \% SOMETHING%
Sometimes this was accompanied either by the βGeneralβ, if it was common to the project, or by something specific. There is also a shared directory for shared files in the version folder. Net.
These are so large projects over several solutions that can reference assemblies from a common place.
The collector also has a shared drive with the same name that the developers associated with S :. This allows them to get the latest build if they need it.
All this means that someone can get to the new computer and open the project without copying the links in different places, and make sure that dev a refers to the assembly from the same place as dev b, etc ...
This solution works well for us, so I was wondering what solutions you have to ensure that all developers refer to assemblies from the same path?
source share