What is the point of MSBUILD/NANT if you are just going to write procedural code? Isn't Powershell better? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T14:56:12Zhttp://stackoverflow.com/feeds/question/559549http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/559549/what-is-the-point-of-msbuild-nant-if-you-are-just-going-to-write-procedural-code5What is the point of MSBUILD/NANT if you are just going to write procedural code? Isn't Powershell better?Schneider2009-02-18T01:46:29Z2009-05-10T21:13:39Z
<p>I am currently writing a deployment script in MSBUILD, and after downloading several extensions, I have found myself looking at the build file and thinking:</p>
<p><strong><em>What was the point in doing this in MSBUILD?</em></strong></p>
<p>This deployment script is completely procedural: stop website, delete folder, copy files, change permissions, start website, etc. There is no fancy dependency stuff which I assume is the natural domain of tools like MSBUILD, NANT and MAKE.</p>
<p>The only reason I can see to use MSBUILD is that it comes as standard, and its easy to put the extensions into your SVN so builds 'just work'.</p>
<p>The problem with it is I have to spend all this time working out how to do 'basic stuff' in MSBUILD (locating extensions, working out syntax) which would be trivial (although more verbose) in Powershell or even command line.</p>
<p>So to sum up:
<strong>Are procedural tasks suited to MSBUILD or are you better of using something like Powershell?</strong></p>
http://stackoverflow.com/questions/559549/what-is-the-point-of-msbuild-nant-if-you-are-just-going-to-write-procedural-code/559555#5595553Answer by Fritz H for What is the point of MSBUILD/NANT if you are just going to write procedural code? Isn't Powershell better?Fritz H2009-02-18T01:51:21Z2009-02-18T01:51:21Z<p>It really depends on your situation. If it were up to me, though, and you were using Visual Studio - I would say yes, stay with MSBuild for the sake of integration.</p>
<p>On the other hand, I would choose MSBUILD, as while the tasks are very procedural, it gives you the flexibility to extend this build process later on to handle more complex tasks.</p>
http://stackoverflow.com/questions/559549/what-is-the-point-of-msbuild-nant-if-you-are-just-going-to-write-procedural-code/573328#5733287Answer by Jeffrey Snover - MSFT for What is the point of MSBUILD/NANT if you are just going to write procedural code? Isn't Powershell better?Jeffrey Snover - MSFT2009-02-21T16:34:32Z2009-02-21T16:34:32Z<p>Check out PSAKE and see what you think.</p>
<p><a href="http://www.jameskovacs.com/blog/IntroducingPsake.aspx" rel="nofollow">http://www.jameskovacs.com/blog/IntroducingPsake.aspx</a>
<a href="http://powerscripting.wordpress.com/2009/01/25/episode-56-james-kovacs-talks-about-psake/" rel="nofollow">http://powerscripting.wordpress.com/2009/01/25/episode-56-james-kovacs-talks-about-psake/</a>
<a href="http://code.google.com/p/psake/" rel="nofollow">http://code.google.com/p/psake/</a></p>
<p>Experiment! Enjoy! Engage!</p>
<p>Jeffrey Snover [MSFT] Windows Management Partner Architect</p>
http://stackoverflow.com/questions/559549/what-is-the-point-of-msbuild-nant-if-you-are-just-going-to-write-procedural-code/678490#6784904Answer by Wedge for What is the point of MSBUILD/NANT if you are just going to write procedural code? Isn't Powershell better?Wedge2009-03-24T17:48:47Z2009-03-24T17:48:47Z<p>MSBuild is not a scripting language and shouldn't be used as such. It's almost unfortunate that MSBuild has such a rich extensibility and is flexible enough to be used for just about anything. Use the tools that are most appropriate to the task, if you find yourself spending too much time creating functionality that is too limited and too low quality compared to what you'd be able to create with other technology, you should switch.</p>
http://stackoverflow.com/questions/559549/what-is-the-point-of-msbuild-nant-if-you-are-just-going-to-write-procedural-code/846118#8461180Answer by Precipitous for What is the point of MSBUILD/NANT if you are just going to write procedural code? Isn't Powershell better?Precipitous2009-05-10T21:13:39Z2009-05-10T21:13:39Z<p>msbuild comes with .NET. You have to add powershell to servers / users must add it - at least through Windows XP, server 2003. That may or may not be a problem in your environment. </p>
<p>I don't think procedural tasks are suited for writing in MSBUILD, simply because the shorter the msbuild, the better as far as I am concerned. I might use msbuild to call them, but would probably write an extension library to implement them. </p>