I'm looking for some guidance where to store assemblies. This is how our source tree looks like at the moment:
ProjectName
trunk
|--------src (source code)
|--------lib (assemblies needed by every project e.g. NUnit framework, svn external)
|--------tools (tools needed by every project e.g. NUnit executable, svn external)
|--------ThirdPartyAssemblies (project specific assemblies, e.g. log4net)
We've moved some code to a library of our own which is called Utils.dll.
I'm now wondering where to put this library (literally a good name for the folder) and furthermore other libraries that we write in the future.
ThirdPartyAssemblies
does not seem like the right place (since it's not from a third party), nor does lib
since the assemblies are not needed by every project we create.