.Net Deployment Project's Detected Dependencies magically un-excluded - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T08:49:25Z http://stackoverflow.com/feeds/question/557631 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/557631/net-deployment-projects-detected-dependencies-magically-un-excluded 2 .Net Deployment Project's Detected Dependencies magically un-excluded BrianH 2009-02-17T16:29:57Z 2009-05-06T18:37:30Z <p>I have a Visual Studio 2005 .NET solution that has 20+ sub projects including a deployment project. The VS2005 .NET deployment project has a number of detected dependences, that have been manually excluded and corrected values manually added in.</p> <p>Sometimes however, these detected dependencies get magically un-excluded, which triggers a warning on the build: WARNING: Two or more objects have the same target location ('[targetdir]\')</p> <p>What is the trigger that causes a detected dependency to be un-excluded? Can deployment solutions have their warnings treated as errors so the nightly build won't proceed?</p> http://stackoverflow.com/questions/557631/net-deployment-projects-detected-dependencies-magically-un-excluded/642430#642430 0 Answer by Konstantinos for .Net Deployment Project's Detected Dependencies magically un-excluded Konstantinos 2009-03-13T12:22:14Z 2009-03-13T12:22:14Z <p>Ok this is more of a <a href="http://msdn.microsoft.com/en-us/library/zhx4ah11%28VS.80%29.aspx" rel="nofollow">hack</a> than anything else :)</p> <p>You normally under visual studio have 2 options:</p> <p>a) Exclude the duplicated DLLs <br/>or<br/> b) Set the <strong>Condition</strong> property of your duplicated DLLs to something different.</p> <p>Problem is that with both of these approaches, you are still gonna have them <strong>magically</strong> reset and get the warning like before..</p> <p>What worked for us is the following solution:</p> <p>a) Go to your setup project and create a <strong>Custom Folder</strong></p> <p>b) Set the <strong>DefaultLocation</strong> property of your custom folder to be the same as the one you need those DLLs to be placed. ie for ASP.NET applications the value is [TARGETDIR]\bin</p> <p>c) Then drag and drop ALL the duplicated dlls into this folder and you should get no warnings now. </p> <p>That's it. You should get no warnings for those dlls, if you have any extra just drag them into this folder.</p> <p>Hope this helps.</p> <p>-Konstantinos</p> http://stackoverflow.com/questions/557631/net-deployment-projects-detected-dependencies-magically-un-excluded/812799#812799 0 Answer by Binary Phile for .Net Deployment Project's Detected Dependencies magically un-excluded Binary Phile 2009-05-01T19:08:26Z 2009-05-01T19:08:26Z <p>The discussion of detected dependency refreshes here may explain the behavior if you're using multiple development environments with the same project:</p> <p><a href="http://www.xmission.com/~legalize/msi/known-bugs-2003.html" rel="nofollow">http://www.xmission.com/~legalize/msi/known-bugs-2003.html</a></p> http://stackoverflow.com/questions/557631/net-deployment-projects-detected-dependencies-magically-un-excluded/831054#831054 1 Answer by JasonRShaver for .Net Deployment Project's Detected Dependencies magically un-excluded JasonRShaver 2009-05-06T18:37:30Z 2009-05-06T18:37:30Z <p>I have had that same issue and dealt with it for about a year before giving up and moving over to <a href="http://wix.sourceforge.net/" rel="nofollow">WiX</a>. It also did not help that I had to 'double-build' my builds because MSBuild for VS2005 will not work with deployment projects.</p> <p>Anyway, you may want to consider something like WiX for your installs.</p>