Re: [Nant-users] nant basic query

2004-09-14 Thread Gert Driesen
- Original Message - From: "Ankita Kapadia" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 14, 2004 8:14 AM Subject: [Nant-users] nant basic query I need to use Nant to automate the daily build. 1) Is there any predefined Clearcase task in Nant just like "ccupdate"

Re: [Nant-users] Solution Task and C++ Project configuration -- EHsc

2004-09-14 Thread Gert Driesen
Jeff, Apparently NAnt is not passing the option on to the compiler. Can you provide a repro for this ? Thanks, Gert - Original Message - From: "Jeff McMahon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 13, 2004 11:09 PM Subject: [Nant-users] Solution Task and C++

[Nant-users] nant basic query

2004-09-14 Thread Ankita Kapadia
I need to use Nant to automate the daily build. 1) Is there any predefined Clearcase task in Nant just like "ccupdate" in ant ? 2) My project .sln file contains 8 different projectsThere is a one.csproj file for each project, So I have 8 .csproj files.Can I use them directly to make a build

[Nant-users] IntelliSense for NAnt build files

2004-09-14 Thread Boland, Craig
All,   Check out this post for enabling IntelliSense in Visual Studio 2003 for NAnt build files:   http://dallas.sark.com/SarkBlog/cboland/archive/2004/09/13/381.aspx     Craig Boland Software Architects, Inc. http://dallas.sark.com/sarkblog/cboland  

[Nant-users] Solution Task and C++ Project configuration -- EHsc

2004-09-14 Thread Jeff McMahon
Hi all, I am using the solution task to build my c++ project. I am getting the following output when verbose="true" for the solution task. There are 100's of the C4530 warnings even though I have set the /EHsc option within the IDE. Also, when I review the commandline compile settings I see th

Re: [Nant-users] setting up clean server - .net sdk

2004-09-14 Thread Gert Driesen
- Original Message - From: "Howard Dierking" <[EMAIL PROTECTED]> To: "'Nant-Users (E-mail)'" <[EMAIL PROTECTED]> Sent: Tuesday, September 14, 2004 10:19 PM Subject: [Nant-users] setting up clean server - .net sdk Hi quick question. I'm setting up a build server on a new win2003 server m

[Nant-users] How to get the log of a task in a txt file

2004-09-14 Thread Ankita Kapadia
I want something similar to "output" attribute of the ant call . In ANt In Nant, I am using the solution task like:- http://localhost/pines/pines.csproj"; path="E:\ankita_views2\ankita_kapadia_view2\rfid_tid\persistent_solution\PIN ES-MSFT\WebApps\Src\PinesWeb\pines.csproj" />

RE: [Nant-users] BUILD FAILED INTERNAL ERROR System.Net.WebException

2004-09-14 Thread Ankita Kapadia
Thanks Gert. I used element and it worked for me using NAnt 0.84 :- http://localhost/pines/pines.csproj"; path="E:\ankita_views2\ankita_kapadia_view2\rfid_tid\persistent_solution\PIN ES-MSFT\WebApps\Src\PinesWeb\pines.csproj" /> -Original Message- From: Gert Driesen [mai

Re: [Nant-users] nightly builds

2004-09-14 Thread Troy Laurin
Kevin Williams wrote: Troy Laurin wrote: There are cons, one being it's harder to insert data into an xml file than it is to create a new one I have found the xmlpoke task to be quite simple to use. My issue with xmlpoke is that it is great for changing nodes and attributes in-place, but I could

[Nant-users] setting up clean server - .net sdk

2004-09-14 Thread Howard Dierking
Hi quick question. I'm setting up a build server on a new win2003 server machine. I'm trying to keep this machine as clean as possible. Because win 2003 server comes with the .net framework installed, I had assumed this was all I needed. However, I'm seeing that it looks like the sdk is also ne

RE: [Nant-users] Testing if a directory exists.

2004-09-14 Thread Burton, Kevin
Thank you. It makes sense when you know how to do it. -Original Message- From: Merrill Cornish [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 14, 2004 4:09 PM To: Burton, Kevin; Gert Driesen; [EMAIL PROTECTED] Subject: RE: [Nant-users] Testing if a directory exists. Kevin, First

RE: [Nant-users] Testing if a directory exists.

2004-09-14 Thread Felice Vittoria
Kevin, You need to do this: ${directory::exists(build.dir + '/ConsumerWeb/bin')} HTH, Felice -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Burton, Kevin Sent: Tuesday, September 14, 2004 3:37 PM To: Gert Driesen; [EMAIL PROTECTED] Subject: RE: [Nant-user

RE: [Nant-users] Testing if a directory exists.

2004-09-14 Thread Merrill Cornish
Kevin, First you need only one enclosing ${ ... }. Next, because you have only one enclosing ${ ... }, EVERYTHING inside it will be evaluated as either a function or a property name unless quotes. But, '/ConsumerWeb/bin' is a literal string. So you need so that "build.dir" ins

RE: [Nant-users] Testing if a directory exists.

2004-09-14 Thread Burton, Kevin
Thank you for your help. Now, what if I want to test for a subdirectory of the directory specified by the property? I want to do something like: Where the subdirectory is appended to the property. This doesn't seem to work as I have coded above. Kevin -Origina

[Nant-users] NDoc in the latest nightly

2004-09-14 Thread Fred Briden
Hi - I dl'd and installed the 9/10/04 nightly and now when I run my build I get an error from ndoc stating that 'One or more of the types in the assembly unable to load'. I searched through the groups and it seemed that I might be missing an assembly or something - which was odd being as how it

[Nant-users] Nightly builds missing ??

2004-09-14 Thread Punjani, Pankaj
Title: Nightly builds missing ?? What happened to all the nightly builds for nant. The only one I can see is 2004-09-10-0.85.? Pankaj

Re: [Nant-users] BUILD FAILED INTERNAL ERROR System.Net.WebException

2004-09-14 Thread Gert Driesen
Hi Ankita, WebDAV access for web projects has been deprecated (in NAnt 0.85). I suggest using a recent nightly build (http://nant.sourceforge.net/nightly/builds), and use the element to define a mapping between url's and local paths. See http://nant.sourceforge.net/nightly/help/tasks/solution.h

Re: [Nant-users] Task fail property

2004-09-14 Thread Gert Driesen
- Original Message - From: "James Geurts" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 14, 2004 5:10 PM Subject: [Nant-users] Task fail property > Hey all, > > Is there a property that gets set when a task fails? I see the > nant.onfailure property, but I am cur

RE: [SPAM] - RE: [Nant-users] nightly builds - Email found in subject

2004-09-14 Thread Felice Vittoria
Clayton, I like it. Could you capture from last nightly build to prevous nightly build? If so, then should we have 2 changelogs? One capturing last release to last nightly and another capturing previous nightly to last nightly? Did that make sense? Felice -Original Message- From:

RE: [Nant-users] nightly builds

2004-09-14 Thread Clayton Harbour
Hi All, So I am not sure this is going to capture everyone's interest but on the other hand it is a "first attempt" and I don't really expect it to :-). I have uploaded an example of the changelog here: http://nant.sourceforge.net/tmp/changelog_2003-12-26_to_2004-9-14.html Instead of usi

[Nant-users] Task fail property

2004-09-14 Thread James Geurts
Hey all, Is there a property that gets set when a task fails? I see the nant.onfailure property, but I am curious if there is something I can check on a per task basis. Thanks Jim --- This SF.Net email is sponsored by: thawte's Crypto Chal

Re: [Nant-users] nightly builds

2004-09-14 Thread Kevin Williams
Troy Laurin wrote: There are cons, one being it's harder to insert data into an xml file than it is to create a new one I have found the xmlpoke task to be quite simple to use. I would absolutely love to see this feature added to NAnt, but with a Subversion flavor in addition to CVS. ---

[Nant-users] how to create application on IIS

2004-09-14 Thread Vladimir Knezevic
Hi!   I’m working on a build script that compiles source, sets virtual directory… I haven’t found any helpful instructions how to create application.   Please help.     Vladimir

[Nant-users] BUILD FAILED INTERNAL ERROR System.Net.WebException

2004-09-14 Thread Ankita Kapadia
Hi, I am trying to build a project with the following task:-   But I get an error Here is the output:-    F:\myfolder\MSFT>nantNAnt 0.84 (Build 0.84.1455.0; net-1.0.win32; release; 12/26/2003)Copyright (C) 2001-2003 Gerry Shawhttp://nant.sourceforge.net   Buildfile: file:///F:/myfolder/MSFT

Re: [Nant-users] nightly builds

2004-09-14 Thread Troy Laurin
Should this be on nant-dev rather than nant-users? Anyway, comments below... Gert Driesen wrote: Hi Clayton, It would be great if we would not have to reply on some local file to determine the last successful daily build. Perhaps we could use a file on our sf project site to store the date of the l

RE: [Nant-users] RE: nant clearcase tasks

2004-09-14 Thread Michael Joseph
There may be some useful information regarding Ant and NAnt integration here: http://stefanbodewig.blogger.de/search?q=nant I don't have any experience with ClearCase but in the worst case you could use the exec task to get the latest sources fom ClearCase. If you're planning on building a Co

RE: [Nant-users] RE: nant clearcase tasks

2004-09-14 Thread Ankita Kapadia
Thanks for the information. But without updating the clearcase view I cannot build it. or is it necessary to use a Dynamic view  in clearcase for this purpose?   Does in any manner take care of this or do I need to integrate Ant and Nant for this How feasible is this ?   -Origin

Re: [Nant-users] nightly builds

2004-09-14 Thread Gert Driesen
Hi Clayton, It would be great if we would not have to reply on some local file to determine the last successful daily build. Perhaps we could use a file on our sf project site to store the date of the last succesful nightly build in. Also, I guess it would be nice to store the generated change lo