Re: Re: [Nant-users] nant CVS won't build: 'NAnt.NUnit1.Tasks.NUnitTask' is obsolete

2004-08-19 Thread Adam Monsen
On Fri, 20 Aug 2004 12:15:37 +0900, Ian MacLean <[EMAIL PROTECTED]> wrote: [...] > Did you not get the respnse I posted to nant-dev ? > > http://www.mail-archive.com/nant-developers%40lists.sourceforge.net/msg04583.html No, I'm not subscribed to nant-dev. Trying what you said ... it works. Tha

Re: [Nant-users] nant CVS won't build: 'NAnt.NUnit1.Tasks.NUnitTask' is obsolete

2004-08-19 Thread Ian MacLean
Adam Monsen wrote: I'm using mono on Fedora Core 2, RPMs from http://www.go-mono.com/archive/1.0.1/fedora-2-i386/. I'm unable to install nunut. Ian MacLean on irc.gnome.org#mono suggested a CVS snapshot, so I'm trying to build nant-0.85-20040817.zip (downloaded from http://nant.sf.net/builds/). He

Re: [Nant-users] NAnt Internal Error: Illegal Characters In Path

2004-08-19 Thread Merrill Cornish
>>>I would suggest examining your user's PATH variable Troy, Thanks. I'll check that when I get to work tomorrow. Merrill --- SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk Sonic DV

Re: [Nant-users] NAnt Internal Error: Illegal Characters In Path

2004-08-19 Thread Troy Laurin
Merrill, One user got the internal error shown below. Following the internal > error listing is the part of the NAnt make-cvs-tree target that was > being executed when the problem occurred. My script starts by echoing its command line arguments and various > other important pieces of information.

[Nant-users] update to http://nant.sourceforge.net/nightly/help/fundamentals/buildfiles.html needed

2004-08-19 Thread Felice Vittoria
Hello, I was taking a look at http://nant.sourceforge.net/nightly/help/fundamentals/buildfiles.html and noticed that it needs to be updated to reflect the new property changes, as noted in the Release Note's Breaking Changes. The changes that I'm referring to is this. The change that I'm refe

[Nant-users] NAnt Internal Error: Illegal Characters In Path

2004-08-19 Thread Merrill Cornish
I am now distributing the NAnt build script out to our developers to use to run regression tests before they check-in new code to CVS. And, if course, it works for me, but not for them. One user got the internal error shown below. Following the internal error listing is the part of the NAnt m

[Nant-users] NantContrib depends task

2004-08-19 Thread Felice Vittoria
Hello folks, I was curious to see if there was an example of using NantContrib's depend task. I couldn't find one in the documentation. Has anyone used this? If so, can you share how you used it? Thank you, Felice --- SF.Net email is spo

RE: [Nant-users] nunit assembly not found

2004-08-19 Thread David Thielen
Hi; I'm running: .NET 1.1, nunit 2.2 (actually 2.1.91 acording to gacutil) installed and in the GAC. NAnt 0.84 (Build 0.84.1455.0; net-1.0.win32; release; 12/26/2003) The nant notes say to add the below xml stuff to the nant config file. Is that wrong? That did get it wor

RE: [Nant-users] Long path bug?

2004-08-19 Thread Madhan Retnaswamy
Hi Adrian, I have exactly the same issue as you have. i guess your Nant targets the frame work net-1.0. switch it to net-1.1 and it will work. But after i switch my Nant to build with framework net-1.1, i get a totally different error at a different place. This error says that some header property

[Nant-users] nant CVS won't build: 'NAnt.NUnit1.Tasks.NUnitTask' is obsolete

2004-08-19 Thread Adam Monsen
I'm using mono on Fedora Core 2, RPMs from http://www.go-mono.com/archive/1.0.1/fedora-2-i386/. I'm unable to install nunut. Ian MacLean on irc.gnome.org#mono suggested a CVS snapshot, so I'm trying to build nant-0.85-20040817.zip (downloaded from http://nant.sf.net/builds/). Here is the error I

Re: [Nant-users] Copy misses 'CVS' Directories

2004-08-19 Thread Ian MacLean
set the defaultexcludes attribute to false on the fileset. By default, these directories get excluded: Excludes.Add("**/*~"); Excludes.Add("**/#*#"); Excludes.Add("**/.#*"); Excludes.Add("**/%*%"); Excludes.Add("**/CVS");

[Nant-users] Regex and such like

2004-08-19 Thread Naz Quadri
Hi guys, I would like to name my assemblies in a certain way using the major and minor version numbers in the assembly name. I can determine this from one of two places the assemblies AssemblyVersion attribute or from the directory I am in (3 dirs up will be the project version). How might I do

[Nant-users] References and COM Interop

2004-08-19 Thread Naz Quadri
Hi all, I have a project which uses some PIA's (Primary Interop Assemblies) through interop. Now these are in the GAC and so there is no real path to them. Even looking at the VS.Net project file all I see is :- Any ideas how I would add this in the references section of my csc task ? Thanks N

[Nant-users] IIS application configuration

2004-08-19 Thread Curtis Zarger
I am trying to use the NAnt-contrib task. I am not finding the parameter to define/undefine a virtual directory as an application. (I am referring to the "Remove" button in the "Home Directory" tab of the web site properties dialog.) Can anyone supply a pointer? THX Curt Zarger -

RE: [Nant-users] Copy misses 'CVS' Directories

2004-08-19 Thread Shaber, David
Merrill, On my system, they are not hidden. I am seeing this on 0.84 and the latest nightly build. After looking into this a little more, it looks more like a Fileset issue. If I use a foreach to loop through the folders the directories named 'cvs' do not appear. (foreach with item="File" does t

Re: [Nant-users] Copy misses 'CVS' Directories

2004-08-19 Thread Merrill Cornish
David, On my Windows XP machine, my CVS directories are marked as Hidden. I don't see an option on the task that addresses whether hidden files/directories are copied, but it appears from your experience they aren't. On Windows, you can use the task to turn off the Hidden attributes, but th

Re: Property change-suggestions, was RE: [Nant-users] can't overwrite property

2004-08-19 Thread Gary Feldman
>From: "Ian MacLean" <[EMAIL PROTECTED]> >Sent: Friday, August 13, 2004 12:27 AM > Gary Feldman wrote: > >>From: "Ian MacLean" <[EMAIL PROTECTED]> > >>Sent: Thursday, August 12, 2004 6:40 AM > >> ... > sorry - I don't buy it. Is > > name=value really that much simpler than: > > The former is th

[Nant-users] Copy misses 'CVS' Directories

2004-08-19 Thread Shaber, David
I during one of my builds, after pulling CVS, I attempted to copy everything to a different location. I noticed that any subfolders named ‘cvs’ was not being copied.   I tried this with the latest nightly build and a test set of directories and it appears that any subdirectory named ‘cvs

RE: [Nant-users] Task for creating a Windows share?

2004-08-19 Thread Curtis Zarger
I use shares as part of my build. My "clean" build (not an update) deletes folders before recreating. I've found that if someone has a file open within the share, the build fails. So I have to drop the share and recreate it within the build. The way I do it is with psexec and net share. Curt Z

[Nant-users] endless loop in nant package task for cvs head...

2004-08-19 Thread John Cole
Trying to compile this morning, and nant seems to get stuck in a loop... package: [exec] NAnt 0.85 (Build 0.85.1692.0; net-1.1.win32; dev; 8/19/2004) [exec] Copyright (C) 2001-2004 Gerry Shaw [exec] http://nant.sourceforge.net [exec] [exec] Buildfile: file:///C:/src/nant

Re: [Nant-users] Task for creating a Windows share?

2004-08-19 Thread Eric Fetzer
To me this is more deploy in nature than build. At this point I use NSIS for deployment and NAnt for builds. With NSIS, I am able to do many things to the machines I am deploying to that I couldn't with NAnt (assure processes are shut down, modify permissions, create services...). I only run NAn

[Nant-users] Problem with NAntContrib...

2004-08-19 Thread Ballal, Pradeep\(STP\)
Hi, I am using the vssget task in NAntContrib for getting files out of our VSS repository before build. However, I receive the following error: "invalid element . Unknown task or datatype." I tried copying NAntContrib dlls into the NAnt bin folder. I also tried to build NAntContrib and then c

Re: [Nant-users] nunit assembly not found

2004-08-19 Thread Gert Driesen
Hi David, What version of NUnit is your test assembly built with ? What version of NAnt are you using ? About the assembly binding redirect : adding to to the NAnt configuration file has no effect. You should add it to the application configuration file for your test assembly, and if you don't

Re: [Nant-users] zip task fails with out of memory exception...

2004-08-19 Thread Gert Driesen
John, This is now fixed in cvs. Thanks ! Gert - Original Message - From: "John Cole" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 18, 2004 12:09 AM Subject: [Nant-users] zip task fails with out of memory exception... I'm trying to use the zip task to compress a bun