[nant-dev] [ nant-Bugs-942294 ] solution - Failure to locate COM library with culture != 0

2004-05-03 Thread SourceForge.net
Bugs item #942294, was opened at 2004-04-26 09:07 Message generated for change (Comment added) made by c-jkeyser You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=402868aid=942294group_id=31650 Category: Tasks Group: 0.85 Status: Closed Resolution: Fixed Priority: 5

FW: [NAntC-Dev] RE: [nant-dev] Linux story

2004-05-03 Thread Clayton Harbour
Sorry for the cross-post, sent this to the wrong list :-). -Original Message- From: Clayton Harbour Sent: May 3, 2004 7:41 AM To: Philip Nelson Cc: [EMAIL PROTECTED] Subject: [NAntC-Dev] RE: [nant-dev] Linux story Hi Philip, That IS a good story! I am using a DAL called Gentle .Net

[nant-dev] [ nant-Bugs-947214 ] Solution task assumes configuration names are the same

2004-05-03 Thread SourceForge.net
Bugs item #947214, was opened at 2004-05-03 16:19 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=402868aid=947214group_id=31650 Category: Tasks Group: 0.85 Status: Open Resolution: None

[nant-dev] Path string bug

2004-05-03 Thread zee
When I try to delete all files in build dir, I get the below error, below is my task: target name=deleteall echo message=${nant.project.basedir} / delete verbose=true failonerror=true fileset basedir=../${branch}/.NET/** includes

Re: [nant-dev] Path string bug

2004-05-03 Thread Gert Driesen
The basedir is a path, and this should indeed not contain '*' characters. More recent versions of NAnt (http://nant.sourceforge.net/nightly/builds), will provide a more useful error message. You probably want something like this : fileset basedir=../${branch}/.NET includes name=*.* / /fileset