[Nant-users] Copying a directory tree

2003-08-19 Thread Sean Perkin
How does one copy a directory tree to another location?   Thanks,    Sean Perkin   

[Nant-users] Failing to load libkernel32.dll.so

2003-08-19 Thread Will Castelnau
Hi all, I am using Nant version 0.8.3-rc2 under linux, with "mono" version 0.26. I built mono from scratch on my box and did a standard install without any changes. I was wondering if anyone could shad a little light on this problem: Nant tries to load "./libkernel32.dll.so", and fails to do so.

[Nant-users] Mono .26

2003-08-19 Thread Jesse S. A. Bridgewater
Hello, I am very new to NAnt and I have a few very basic questions. Firstly I am unsing mono version .26 in Debian GNU/Linux and I downloaded and installed nant-0.8.3-rc2. I can run NAnt.exe under the mono runtime but when I try to build NAnt from source or try to run the example packages I get

[Nant-users] Replace Task in Nant

2003-08-19 Thread Daya Sharma
Hi All I think it will be wonderful to have a Replace task in Nant, much like it is in ANT http://ant.apache.org/manual/CoreTasks/replace.html . This is specially useful for cases like changing the value of the project URL in .sln file when using Solution task. e.g. to change "http://localhost/ip

RE: [Nant-users] Replace Task in Nant

2003-08-19 Thread Anthony LoveFrancisco
Overall, I like the idea, but I'm wondering the utility/value of a set of new tasks versus just invoking sed/awk/perl from an exec task ? - Ants | -Original Message- | From: [EMAIL PROTECTED] | [mailto:[EMAIL PROTECTED] On Behalf Of | Jaroslaw Kowalski | Sent: Tuesday, 19 August, 2

Re: [Nant-users] Bug with link attribute in Visual Studio.NET C# project files.

2003-08-19 Thread Gert Driesen
Martin, Can you transform this information into a bug report (http://sourceforge.net/projects/nant/) so we don't forget about this one. Thanks, Gert - Original Message - From: "Martin Webrant TACMa" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 19, 2003 3:24 PM Subj

Re: [Nant-users] Replace Task in Nant

2003-08-19 Thread Jaroslaw Kowalski
Great idea. It would also be useful for updating assembly versions within daily builds. And because it's very easy to use regular expressions on .NET I suggest that we supported regexes in search patterns. This way you could have: I'm also thinking about using this task to i

RE: [Nant-users] VSSGet and subprojects question or bug?

2003-08-19 Thread Michael Dang
Ahh hahhh!Thank you Richard, Daniel, Brian, and everyone else. Solution: use VSS 6.0c The article was very informative. Sly lil interface changes make a big difference. Mike --- Richard Miller <[EMAIL PROTECTED]> wrote: > Hi, > > At the risk of confusing the issue > > http://www.dotne

RE: [Nant-users] VSSGet and subprojects question or bug?

2003-08-19 Thread Richard Miller
Hi, At the risk of confusing the issue http://www.dotnet247.com/247reference/msgs/34/170433.aspx indicates that there was a change in the prototype for the get task between 6.0c and d to do with default values for the Local parameter (search for 'The problem is the "Local" parameter') We are u

[Nant-users] Compiling from CVS (was Problems with solution task when solution has multiple projects)

2003-08-19 Thread Jaroslaw Kowalski
Hi Eric,   you're right, you need to get the sources from CVS. It's very easy. Here I've provided you with some instructions for compiling NAnt from CVS.   Hope it helps,   Jarek   P.S. As I've written, this may or may not solve the mentioned problem.           HOW TO COMPILE NAnt FROM CV

[Nant-users] Replace Task in Nant

2003-08-19 Thread Daya Sharma
Hi All I think it will be wonderful to have a Replace task in Nant, much like it is in ANT http://ant.apache.org/manual/CoreTasks/replace.html . This is specially useful for cases like changing the value of the project URL when using Solution task. Case in point is the following that I had to wri

[Nant-users] NUnit2Report v1.2.2 Task is now available for download.

2003-08-19 Thread Gilles Bayon (Wana)
NUnit2Report v1.2.2 is now available for download. http://nunit2report.sourceforge.net/Change log :* Support for nant version 0.8.3.* Remark : This version doesn't support the .Net Framework V1.1, it must be in the next release. All install and usage instructions are included in the zip fil

[Nant-users] Bug with link attribute in Visual Studio.NET C# project files.

2003-08-19 Thread Martin Webrant TACMa
I attached a sample project that produces the error. The link attribute can be used for embedded resources aswell. Example: Error: C:\temp\nantbug>"C:\Program Files\nant\bin\nant.exe" nantbug.build NAnt version 0.8.3 Copyright (C) 2001-2003 Gerry Shaw http://nant.sourceforge.ne

Re: [Nant-users] Problems with solution task when solution has multiple projects

2003-08-19 Thread Jaroslaw Kowalski
Try compiling NAnt from CVS (it's very easy, just type "nant release" and fresh nant will be built to "build/nant-0.8.4" directory). Solution task has been recently fixed in CVS, maybe this will fix your problem. Using nant from CVS I'm able to build a quite complex (8 interdependent projects) so

[Nant-users] Problems with solution task when solution has multiple projects

2003-08-19 Thread Michael Sawczyn
Just started trying to use Nant yesterday, so forgive me if this is a known issue. I created a solution for the HelloWorld example with one C# project in it (HelloWorld-cs.csproj). Using the following build script, Nant 0.8.3-rc2 compiled it just file: ---