I am looking for guidance for storing assemblies. Here's what our source tree looks like at the moment:
ProjectName
trunk
| -------- src (source code)
| -------- lib (assemblies required for each project, for example, NUnit framework, svn external)
| -------- tools (tools needed for each project, for example, NUnit executable, svn external)
| -------- Third page:
We moved some code to our own library called Utils.dll.
Now I wonder where to put this library (literally a good name for the folder) and, in addition, the other libraries that we will write in the future.
ThirdPartyAssembliesdoesn’t seem like the right place (since it’s not from the side of a third party), nor does it lib, since assemblies are not needed for every project that we create.
source
share