At my Team we work on different applications simultaneously, each application live in a separate solution.The common denominator between those different solutions is one solution which hold some WebControls, scripts (for the web controls) and some other methods which serve the BL and Dal.
I am gonna talk about the WebControls and their scripts.As you can understand, each application (solution) holds a reference to the WebControls DLL, but What are we going to do with the scripts? I prefer to write a pre-build event script which will deploy (simple XCopy) the scripts to the Inetpub and than each application could use those controls without copy the scripts to their private directory hierarchy.
Yesterday we start using another Solution, IEWebControls (which most of you probably know their controls such as tabstrip, treeview etc.), while installing the IEWebControls it will create a directory on your computer and after running their build script it will copy the scripts into the Inetpub.
We made a discussion about how we should use the the DLL and the scripts so all the programmers could make a simple get from the VSS, and every one could use those WebControls, there are two different opinions:1) each programmer should make his get (only for the scripts) from the source-safe into the Inetpub directory (the references to the DLL is already exist in the relevant solutions).2) each programmer should get the full solution and make a build, the build will cause the XCopy for the relevant scripts to the exact directory.
I prefer the second, because it will be exactly like our WebControls solution which I describe earlier,also it will be similar to regular deploy to our the servers, finally I think that this is the right logic for all changes (if exist - DLL/scripts) to take place at one click (build).
I would like to hear your suggestions, What do you think about my preferred way.
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.