deployment tools under .NET solutions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T09:51:15Z http://stackoverflow.com/feeds/question/416573 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/416573/deployment-tools-under-net-solutions 2 deployment tools under .NET solutions balexandre 2009-01-06T13:48:16Z 2009-01-06T14:16:01Z <p>Hi guys,</p> <p>We all do code, small (like one .exe) or big applications (complete solutions) with web applications, windows applications, databases, help files, configuration files and registry values...</p> <p>my question is simple, in my opinion that is, now that I need to deploy a web application and a windows application in just one installation setup:</p> <blockquote> <p>What do you use to the deployment of your applications, regarding creating of <strong>help files</strong>, database scripts so we can <strong>create a database and tables</strong>, create a <strong>virtual directory</strong> for the web applications, add <strong>registry values</strong> to work with our windows application?</p> </blockquote> <p>I just open Setup &amp; Deployment from Visual Studio 2008, but is it me or it lack a lot of such features? is there any thing worst a try out there for this?</p> <p>I know <a href="http://www.innosetup.com/" rel="nofollow">Inno Setup</a> that they use here in the company, but it does not do all, any good tutorial that I should see? In my search I found out <a href="http://www.visualstudiogallery.com/Results.aspx?CategoryId=3f790e6a-d276-4f61-9f44-e99dda83288c" rel="nofollow">some products</a> in <a href="http://www.visualstudiogallery.com/" rel="nofollow">Visual Studio Gallery</a>, but none does all-in-one :(</p> <p>Thank you.</p> http://stackoverflow.com/questions/416573/deployment-tools-under-net-solutions/416595#416595 0 Answer by Steven Robbins for deployment tools under .NET solutions Steven Robbins 2009-01-06T13:53:36Z 2009-01-06T13:53:36Z <p>We use <a href="http://www.finalbuilder.com/" rel="nofollow">FinalBuilder</a> and FinalBuilder server here. Lets you build complicated build processes using a relatively nice build interface and launch them from a web application or on a timer.</p> <p>Our "average" project will grab source from SVN, add the revision number to the version and build, grab the database scripts and upgrade or rebuild the database and deploy to either a webserver, ZIP it up for emailing or even create an ISO for it.</p> http://stackoverflow.com/questions/416573/deployment-tools-under-net-solutions/416643#416643 1 Answer by orip for deployment tools under .NET solutions orip 2009-01-06T14:02:51Z 2009-01-06T14:02:51Z <p>I strongly suggest <a href="http://nsis.sourceforge.net/Main_Page" rel="nofollow">NSIS</a>, you can get a lot of help on the <a href="http://forums.winamp.com/forumdisplay.php?s=&amp;forumid=65" rel="nofollow">forums</a>.</p> http://stackoverflow.com/questions/416573/deployment-tools-under-net-solutions/416677#416677 0 Answer by Mitch Denny for deployment tools under .NET solutions Mitch Denny 2009-01-06T14:12:17Z 2009-01-06T14:12:17Z <p>If you are into self harm you could look at WiX (<a href="http://wix.sourceforge.net" rel="nofollow">http://wix.sourceforge.net</a>). WiX is used by some of the product teams at Microsoft and is actually maintained by Microsoft employees, but it is pretty much their only open source project on SourceForge.</p> <p>It is very powerful and has features for doing all that you want, but it is all done in XML and can be a little tricky to get going. On the bright side once it is set up it integrates will with automated builds because it has support for being inside Visual Studio (MSBuild support).</p> http://stackoverflow.com/questions/416573/deployment-tools-under-net-solutions/416694#416694 0 Answer by Conrad for deployment tools under .NET solutions Conrad 2009-01-06T14:16:01Z 2009-01-06T14:16:01Z <p>The setup and deployment projects have served me well in the past for simple setups like creating virtual directories and packaging files such as documentation, etc.</p> <p>If you want more power have a look at <a href="http://wix.sourceforge.net/" rel="nofollow">WIX</a></p>