Re: [nant-dev] Task/planning for 0.87 release

2010-03-04 Thread Charles Chan
Hello Gert, Thanks for the heads up. Let me try this, and if I can pinpoint the source of the issue. Perhaps I will post to Mono dev team as well and see if they can provide any guidance. Regards, Charles --- On Thu, 3/4/10, Gert Driesen gert.drie...@telenet.be wrote: From: Gert Driesen

Re: [nant-dev] Task/planning for 0.87 release

2010-03-04 Thread Ryan Boggs
Hi, Just so I am clear, the userdoc section is just generating the code documentation via NDoc, correct? If so, I will see if installing NDoc on my machines will speed things up. I currently do not have NDoc on any of my machines. Even on my windows machine where it can take ~100 seconds

Re: [nant-dev] Task/planning for 0.87 release

2010-03-04 Thread Ryan Boggs
Hi, Me again. I noticed something in the current NAnt.build file that may be causing the massive *nix delay, or at least making it worse. The install target on line 822, which I believe is being called by (n)make, lists two depending targets called install-windows and install-linux. Looking at

[nant-dev] Problem compiling NAnt on Ubuntu?

2010-03-04 Thread Charles Chan
I tried to test NAnt on Ubuntu 9.10 and got the following error: ubu...@ubuntu-laptop:~/work/nant$ make mkdir -p bootstrap cp -R lib/ bootstrap/lib # Mono loads log4net before privatebinpath is set-up, so we need this in the same directory # as NAnt.exe cp lib/common/neutral/log4net.dll

Re: [nant-dev] Problem compiling NAnt on Ubuntu?

2010-03-04 Thread Ryan Boggs
Hmm, it looks like it can't find System.Data.dll. Is it in /usr/lib/mono? Did you upgrade the default Mono installation or did you upgrade? Thanks, Ryan On Thu, Mar 4, 2010 at 7:02 PM, Charles Chan cchan...@users.sourceforge.net wrote: I tried to test NAnt on Ubuntu 9.10 and got the following

Re: [nant-dev] Task/planning for 0.87 release

2010-03-04 Thread Charles Chan
Hello Ryan, Thanks for looking into this. Yeah I follow what you are saying (but I couldn't really test it ... see my other post.) The question basically comes down to this: If the target has a conditional expression. What order is it evaluated in? (I checked the NAnt doc. but it did not

Re: [nant-dev] Problem compiling NAnt on Ubuntu?

2010-03-04 Thread Charles Chan
Hello Ryan, I can find System.Data.dll under /usr/lib/mono/2.0. I don't really remember how it is installed, my best guess is by using aptitude install mono-mcs. Should I download and install from Mono website instead? Any particular version I should be using? (Btw, at work, we used CentOS 5

Re: [nant-dev] Problem compiling NAnt on Ubuntu?

2010-03-04 Thread Ryan Boggs
Try sudo apt-get install mono-complete I believe that is the command I used for my Debian VM machine and nant installs fine on there. And Ubuntu is based on that. let me know if that helps... Thanks, Ryan On Mar 4, 2010, at 7:36 PM, Charles Chan cchan...@users.sourceforge.net wrote:

Re: [nant-dev] Problem compiling NAnt on Ubuntu?

2010-03-04 Thread Charles Chan
Thanks, Ryan, mono-complete -- That did the trick! Charles --- On Fri, 3/5/10, Ryan Boggs rmboggs.obsd.po...@gmail.com wrote: From: Ryan Boggs rmboggs.obsd.po...@gmail.com Subject: Re: [nant-dev] Problem compiling NAnt on Ubuntu? To: cchan...@users.sourceforge.net

Re: [nant-dev] Task/planning for 0.87 release

2010-03-04 Thread Ryan Boggs
Hey, Hope your Linux box is running ok. On Thu, Mar 4, 2010 at 7:26 PM, Charles Chan cchan...@users.sourceforge.net wrote: Hello Ryan, Thanks for looking into this. Yeah I follow what you are saying (but I couldn't really test it ... see my other post.) The question basically comes down

Re: [nant-dev] Task/planning for 0.87 release

2010-03-04 Thread Gert Driesen
Hi Charles, The docs clearly state that the dependent targets are always executed (first): Note: the dependencies of a target are always executed before testing the target's condition. Source: http://nant.sourceforge.net/release/latest/help/fundamentals/targets.html This makes sense, you