Should I include dependencies for my releases? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T10:26:47Z http://stackoverflow.com/feeds/question/225800 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/225800/should-i-include-dependencies-for-my-releases 3 Should I include dependencies for my releases? Xerxxx 2008-10-22T13:50:44Z 2009-05-30T10:05:13Z <p>Should I include dependencies when I do releases for my common projects such as CommonUtils or should I simply specify which dependencies should be referenced when they are to be used?</p> http://stackoverflow.com/questions/225800/should-i-include-dependencies-for-my-releases/225818#225818 0 Answer by Daok for Should I include dependencies for my releases? Daok 2008-10-22T13:53:42Z 2008-10-22T13:53:42Z <p>I always create two versions (might not be the perfect solution). One with only my own code and 3-tier party dll used. And a bigger version with all the Framework. This way if it's deploy on a new machine I know I will be fine. Otherwise (if update or on a machine I know that dependencies DLL are already there) I use the lite release.</p> http://stackoverflow.com/questions/225800/should-i-include-dependencies-for-my-releases/225823#225823 0 Answer by Rory Becker for Should I include dependencies for my releases? Rory Becker 2008-10-22T13:54:39Z 2008-10-22T13:54:39Z <p>I would always include dependencies where legal and practical.</p> <p>Dependencies will not always be in the GAC and you will be easing the deployment of your software. </p> http://stackoverflow.com/questions/225800/should-i-include-dependencies-for-my-releases/225846#225846 0 Answer by Chris Roland for Should I include dependencies for my releases? Chris Roland 2008-10-22T13:59:37Z 2008-10-22T13:59:37Z <p>I would include the dependencies with your release. When you release you want to control how your application executes and how it behaves. If a user is required to install the dependencies, then they might choose a compatible version, however it might not do X or do X differently. Which will change the way your application behaves and increase application support and maintenance. </p> http://stackoverflow.com/questions/225800/should-i-include-dependencies-for-my-releases/225898#225898 1 Answer by Jay Bazuzi for Should I include dependencies for my releases? Jay Bazuzi 2008-10-22T14:10:28Z 2008-10-22T14:10:28Z <p>You users do not want the work if figuring out your dependencies.</p> <ul> <li>What packages do I need?</li> <li>What if it's not available? (dead server, provider out of business)</li> <li>What version of each one do I need?</li> <li>What if it's not available? (new version)</li> <li>How do I download each one?</li> <li>How do I install each one?</li> </ul> <p>Protect your software from disappearing/unavailable dependencies. Protect your users from the pain of figuring this stuff out.</p> <p>Make your uninstaller do the right thing: remove things you installed, if they're not shared. (That can be hard).</p>