Re: [NAnt-users] NAnt-users Digest, Vol 17, Issue 20

2007-10-26 Thread Mike Frederick
It is a common misconception that the constant MAX_PATH refers to the maximum length of a Windows path. It actually refers to the maximum length of a Windows path *component*, such as a filename or a folder name. You can have multiple folder levels, with each folder's name a maximum of MAX_PAT

Re: [NAnt-users] Advanced NANT question ...

2007-10-26 Thread Alan Guedeney
Thanks Erich, looks like a good time for a wrapper class! Date: Fri, 26 Oct 2007 16:22:09 +0200From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [NAnt-users] Advanced NANT question ... Hi Alan, Thought I'd mention it: When using ExecuteAssembly(), the assembly executes

Re: [NAnt-users] Advanced NANT question ...

2007-10-26 Thread Erich Eichinger
Hi Alan, Thought I'd mention it: When using ExecuteAssembly(), the assembly executes within your current AppDomain and therefore writes to your current AppDomain's stdout/stderr. Thus you easily can redirect output by calling Console.SetOut() / Console.SetError(). -Erich