Sharing common code between applications

Lyon

Newcomer
Joined
Jun 23, 2006
Messages
1
Is GAC the only way to share common code between applications (solutions). I have alot of common code (i.e. formatSQL, email routines, etc.) that I'm converting from Classic ASP to ASP.NET and compiling into a commonLibrary.dll, but the project team lead does not want the commonLibrary.dll showing up in everyone of the applications \bin directory. Is there a way to do this?
 
In that case the GAC is probably the best location, as well as allowing you to store a single copy of the dll it does also allow better control of versioning and is more efficient in terms of memory use.
 
Back
Top