What are the problems with a relatively large common library?

Posted by Sam Pearson on Programmers See other posts from Programmers or by Sam Pearson
Published on 2011-03-01T23:53:00Z Indexed on 2011/03/06 8:17 UTC
Read the original article Hit count: 306

Filed under:
|

As long as the code in the base library is as loosely coupled as splitting it up into separate libraries, what's the problem? In general, having a lot of assemblies composing a .NET solution is painful.

Plus, when code in one solution needs to be shared, it can just be added to the common library, rather than deciding which common library it should be added to or creating yet another library.

edit: the question comes to me after using Smalltalk for a bit, where all the code is available to use, all the time.

© Programmers or respective owner

Related posts about best-practices

Related posts about .NET