[Nant-users] Trying to use NAnt with mono 0.28

2003-12-31 Thread Philip Van Hoof
When I try to use NAnt with the latest mono available in red-carpet I am getting this error: [EMAIL PROTECTED] xnet]$ nant ïNAnt 0.84 (Build 0.84.1450.0; net-1.0.win32; rc 2; 12/21/2003) Copyright (C) 2001-2003 Gerry Shaw http://nant.sourceforge.net ** (/usr/local/nant/bin/NAnt.exe:5619): WARN

Re: [Nant-users] Trying to use NAnt with mono 0.28

2003-12-31 Thread Jaroslaw Kowalski
Enter your nant directory (where nant.build) is located and rebuild it by using: $ make clean $ make all Your rebuilt binaries go to build/mono-1.0.unix/nant-*/bin/ Jarek - Original Message - From: "Philip Van Hoof" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December

[Nant-users] Adding dependencies between subprojects using task

2003-12-31 Thread Karmous S. (Saber)
Hi there, We're trying to add dependencies between subprojects, when we're using a root nant build file, which is used to create subprojects. The subprojects are not explicitly named in the root build file. How can we realize that subproject A, depends on subproject B to be built. Regards Sabe

Re: [Nant-users] Trying to use NAnt with mono 0.28

2003-12-31 Thread Philip Van Hoof
On Wed, 2003-12-31 at 10:21 +0100, Jaroslaw Kowalski wrote: > Enter your nant directory (where nant.build) is located and rebuild it by > using: > > $ make clean > $ make all Gives me this error: make[1]: Entering directory `/usr/local/nant' if test x = xWindows_NT; then make windows-nant; else

Re: [Nant-users] Trying to use NAnt with mono 0.28

2003-12-31 Thread Jaroslaw Kowalski
Open bin/NAnt.exe.config, find: To: "Jaroslaw Kowalski" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, December 31, 2003 10:55 AM Subject: Re: [Nant-users] Trying to use NAnt with mono 0.28 > > On Wed, 2003-12-31 at 10:21 +0100, Jaroslaw Kowalski wrote: > > Enter your nant di

Re: [Nant-users] Trying to use NAnt with mono 0.28

2003-12-31 Thread Philip Van Hoof
On Wed, 2003-12-31 at 11:13 +0100, Jaroslaw Kowalski wrote: > Open bin/NAnt.exe.config, find: > > > > > and update your paths accordingly: > > In my case it is: > > sdkdirectory="/opt/mono/bin" > frameworkdirectory="/opt/mono/bin" > frameworkassemblydirectory="/opt/mono/lib" I chang

Re: [Nant-users] Trying to use NAnt with mono 0.28

2003-12-31 Thread Gert Driesen
You need to have ICU support enabled in Mono, as the NAnt compilers also deal with localization ... Gert - Original Message - From: "Philip Van Hoof" <[EMAIL PROTECTED]> To: "Jaroslaw Kowalski" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, December 31, 2003 12:53 PM Subjec

Re: [Nant-users] Trying to use NAnt with mono 0.28

2003-12-31 Thread Philip Van Hoof
On Wed, 2003-12-31 at 13:09 +0100, Gert Driesen wrote: > You need to have ICU support enabled in Mono, as the NAnt compilers also > deal with localization ... How do I enable this with the mono 0.28 packages? -- Philip Van Hoof, Software Developer @ Cronos home: me at freax dot org (change the

Re: [Nant-users] Trying to use NAnt with mono 0.28

2003-12-31 Thread Gert Driesen
- Original Message - From: "Philip Van Hoof" <[EMAIL PROTECTED]> To: "Gert Driesen" <[EMAIL PROTECTED]> Cc: "Jaroslaw Kowalski" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, December 31, 2003 2:38 PM Subject: Re: [Nant-users] Trying to use NAnt with mono 0.28 > On Wed, 2003-1

RE: [Nant-users] Trying to use NAnt with mono 0.28

2003-12-31 Thread Scott Ford
0.29 has been out since December 2, see if upgrading helps. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gert Driesen Sent: Wednesday, December 31, 2003 8:45 AM To: Philip Van Hoof Cc: Jaroslaw Kowalski; [EMAIL PROTECTED] Subject: Re: [Nant-users] Tryin

[Nant-users] arg... if task or some other conditional

2003-12-31 Thread Ryan Cromwell
I have created a script task which populates a property solution.projects with a | delimited string.  This is all fine and dandy, but web projects return web urls.  I could use DirectoryServices to look up the physical path of the url while still in the script, but i really want to use the NAntCont

Re: [Nant-users] arg... if task or some other conditional

2003-12-31 Thread Jaroslaw Kowalski
If you want to use a stable nant version - that can't be easily done. There could be a solution If you download the latest daily build, you'll see support for expressions and functions. Your condition can be written as: You can get the latest nightly build at: http://nant.sf.net/builds Jare

[Nant-users] Nant question

2003-12-31 Thread Waldinger, Jamie
Title: Nant question Hi, I am new to Nant and trying to automate the build for a mostly .NET project. However, there is one component of the project that is written in MS Visual C++ 6.0. Hence instead of a '.sln' file, it has a '.dsw' file. Can I compile this solution in the same way that I

Re: [Nant-users] Nant question

2003-12-31 Thread Jaroslaw Kowalski
AFAIK, there's no direct support for building *.dsw solutions. You may want to use task on "msdev.com", like this: For a full list of options, execute "msdev.com /?". This isn't the best option, because it requires you to have VS6.0 installed. Jarek - Original Message - From: "Wald

Re: [Nant-users] arg... if task or some other conditional

2003-12-31 Thread Scott Hernandez
If you must run a release version, you can do something like this: http://www.mail-archive.com/[EMAIL PROTECTED]/msg02208.html It combines foreach/regex/if to do what you want. You will need to return True/False on finding the http in the start of the string, but this can be down with regular expr

[Nant-users] Nant help

2003-12-31 Thread Waldinger, Jamie
Title: Nant help Hi, I am looking at Nant to automate builds of a .NET project. My question is, can I do checkouts, checkins, and labelling of code that resides in VSS, all from Nant? I don't see any tasks that indicate such is possible. Please reply to: [EMAIL PROTECTED] - I am not subscr

[Nant-users] .84 and PostBuild steps

2003-12-31 Thread Kinsman,Chris
We use PostBuild steps in our project files to copy files to our common build directory and to provide some functionality that Nant provides automatically.   Problem is that with the release of Nant .84 the post build steps are getting run by Nant and failing because the files they copy a

Re: [Nant-users] Nant help

2003-12-31 Thread William E Caputo
Jamie: >My question is, can I do checkouts, checkins, and labelling of code that resides in VSS, all from Nant? >I don't see any tasks that indicate such is possible. Check out the VSS tasks in NAntContrib: http://nantcontrib.sourceforge.net/help/tasks/index.html Best, Bill William E. Caputo

Re: [Nant-users] Nant help

2003-12-31 Thread Scott Hernandez
Title: Nant help Yes, take a look at the nantcontrib tasks. http://nantcontrib.sf.net   You can also search the archives (nantcontrib/nant) at mail-archive.com for tips and tricks. - Original Message - From: Waldinger, Jamie To: '[EMAIL PROTECTED]' Sent: Tuesday, Decem