Should I include dependencies for my releases? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T10:26:47Zhttp://stackoverflow.com/feeds/question/225800http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/225800/should-i-include-dependencies-for-my-releases3Should I include dependencies for my releases?Xerxxx2008-10-22T13:50:44Z2009-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#2258180Answer by Daok for Should I include dependencies for my releases?Daok2008-10-22T13:53:42Z2008-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#2258230Answer by Rory Becker for Should I include dependencies for my releases?Rory Becker2008-10-22T13:54:39Z2008-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#2258460Answer by Chris Roland for Should I include dependencies for my releases?Chris Roland2008-10-22T13:59:37Z2008-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#2258981Answer by Jay Bazuzi for Should I include dependencies for my releases?Jay Bazuzi2008-10-22T14:10:28Z2008-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>