Re: [NAnt-users] Good Nant book for beginner

2011-08-31 Thread Scott Pennington
Yes. With all software they progress. The great thing about NAnt is that the foundation is very solid and does not change much. This book is an end to end methodology of how to build continuous build system with NAnt and other tools. The way to use NAnt, building and tasks and all of that are b

Re: [NAnt-users] Targeting .net 2.0 x86 on x64 machine

2011-08-31 Thread Dominik Guder
Hi, first of all, many thanks for your very fast answers. I put some of them together since not all went to list. Am 31.08.2011 17:51, schrieb Philip Sayers: > What errors are you seeing? > > Make sure you are building for x86 and not AnyCPU. > > Does this help? > http://social.msdn.microsoft.co

Re: [NAnt-users] Good Nant book for beginner

2011-08-31 Thread Michael Corr
Thanks for posting this. I too have been looking for a good reference book, like this. One question, though: the published date on this book is May 2005. A lot has changed with these tools since then. Is there an updated version or another, more recent reference someone recommends? Thanks Michael

Re: [NAnt-users] Good Nant book for beginner

2011-08-31 Thread Brass Tilde
+1 on these recommendations. I have this book, and it was just what we needed. On Wed, Aug 31, 2011 at 12:30 PM, Scott Pennington wrote: > http://www.apress.com/9781590594858 is a good book on NAnt and > CruiseControl.NET with examples on how to actaully do it. > > ** ** > > *Expert .NET Del

Re: [NAnt-users] Good Nant book for beginner

2011-08-31 Thread Chris Fouts
Expert .NET Delivery (Using Nant and CruiseControl.NET) by Marc Holmes From: Niranjan Bansal [mailto:bansalniran...@gmail.com] Sent: 2011-08-31 12:22 To: Scott Pennington Cc: nant-users@lists.sourceforge.net Subject: [NAnt-users] Good Nant book for beginner Hi, Can anyone recommend good book

Re: [NAnt-users] Good Nant book for beginner

2011-08-31 Thread Scott Pennington
http://www.apress.com/9781590594858 is a good book on NAnt and CruiseControl.NET with examples on how to actaully do it. Expert .NET Delivery Using NAnt and CruiseControl.NET From: Niranjan Bansal [mailto:bansalniran...@gmail.com] Sent: Wednesday, August 31, 2011 9:22 AM To: Scott Penni

[NAnt-users] Good Nant book for beginner

2011-08-31 Thread Niranjan Bansal
Hi, Can anyone recommend good book for beginners on Nant. Thanks Bhuvan Bansal -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an even better price-free! And y

Re: [NAnt-users] Targeting .net 2.0 x86 on x64 machine

2011-08-31 Thread Philip Sayers
What errors are you seeing? Make sure you are building for x86 and not AnyCPU. Does this help? http://social.msdn.microsoft.com/Forums/en/msbuild/thread/e5900710-9849-4d10 -aa28-48b734d06bf2 We compile with msbuild to generate x86 assemblies on x64 hardware/OS just fine. You'll be missing a sett

Re: [NAnt-users] Targeting .net 2.0 x86 on x64 machine

2011-08-31 Thread Scott Pennington
You need to install both the x64 and x32 version of the .net framework. You can skip the MSBuild and call the CSC for csharp compiler, passing in all the reverences, in the x32 or x64 as desired. You may need to call the compiler through the command line instead of the task. Hope this helps

[NAnt-users] Targeting .net 2.0 x86 on x64 machine

2011-08-31 Thread Dominik Guder
Hi folks, I'm going crazy. I don't have any idea how to achieve my issue: We are moving to Win7 x64 machines. And some of our older projets must be built for .net 2.0 x86. I can't get this done neither with nant nor with msbuild itself. Is anybody out there who has managed this issue? Thanks