[nant-dev] Exec task extension

2006-11-16 Thread Leszek Ciesielski
100K data that is redirected to a file, printing to the console is a huge slowdown) The attached patch adds two attributes to the exec task: input and quiet. Please consult the source for documentation. Please comment, or, if everything is fine, commit. Yours, Leszek Ciesielski -- MS-DOS user

[nant-dev] CruiseControl.Net reports failed NAnt builds as success

2007-08-29 Thread Leszek Ciesielski
, Leszek Ciesielski using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; using System.Threading; namespace exit { class Program { static void Main(string[] args) { Process proc = new Process

[nant-dev] Executing multple targets in parallel

2009-06-16 Thread Leszek Ciesielski
Hi, enclosed is a (preliminary version of) patch changing NAnt to run multiple targets in parallel (up to Environment.ProcessorCount * 2 + 1) while taking their dependencies into account. I will be grateful for any improvement suggestions. What I know to be broken: - code formatting is messed

Re: [nant-dev] Executing multple targets in parallel

2009-06-16 Thread Leszek Ciesielski
As I side effect, I have created a git clone of NAnt cvs repository at http://github.com/skolima/NAnt/tree/master . I have also set up cron job to pull changes from cvs into git once a day. My own multithreaded-related changes aren't yet available through github, but I should push them there

Re: [nant-dev] How to perform Incremental builds

2009-09-15 Thread Leszek Ciesielski
csc task does this by default, if this doesn't work for you out of the box, then you have something broken somwhere else... On Mon, Sep 14, 2009 at 6:20 PM, Rasmus Jelsgaard ras...@jelsgaard.com wrote: No worries - please let me know how it works out :) Regards, Rasmus Jelsgaard 2009/9/14

[nant-dev] Compiling Silverlight 3.0

2009-10-02 Thread Leszek Ciesielski
Hi, does anyone have a modified NAnt config that allows targeting Silverlight 3.0? My attempts to create a new framework profile based on SL 2.0 had so far failed misserably... Regards, Leszek 'skolima' Ciesielski --

Re: [nant-dev] [INTRO] Self-introduction for Charles Chan

2010-02-10 Thread Leszek Ciesielski
On Thu, Feb 11, 2010 at 4:23 AM, Charles Chan cchan...@users.sourceforge.net wrote: Hello fellow developers, I am the newest addition to the NAnt developers team, let me provide a brief self introduction. Current Experience == I am a senior software engineer mobile team lead

Re: [nant-dev] NAnt delay on Mono/Linux Update (Aka: NDoc Discussion)

2010-03-09 Thread Leszek Ciesielski
Last time I checked, DOxygen beat all other documentation generators hands down. It had the documentation ready in 1/10 of the time the other programs needed (for a code base larger than NAnt). It does, however, look distinctly doxygenic, which may be a show-stopper for some people. On the other

Re: [nant-dev] Next NAnt/NAntContrib TODO Tasks

2011-10-26 Thread Leszek Ciesielski
On Wed, Oct 26, 2011 at 6:33 PM, Ryan Boggs rmbo...@gmail.com wrote: Hi, On Wed, Oct 26, 2011 at 8:53 AM, Stefan Bodewig stefan.bode...@freenet.de wrote: On 2011-10-26, Ryan Boggs wrote: Now that 0.91 final is out the door, I would like to start discussing what items to work on in both

Re: [nant-dev] VS.NET Solution Configurations/Platforms?

2011-11-14 Thread Leszek Ciesielski
Does NAnt need the x86 config? Is there actually any P/Invoke code that will break with the 'Any CPU' setting? I was under the impression that there wasn't. So the 'Debug|Any CPU' and 'Release|Any CPU' platforms should be enough. On Mon, Nov 14, 2011 at 5:50 PM, Ryan Boggs rmbo...@gmail.com