[Nant-users] Deleting files?

2004-04-05 Thread Bob Archer
Ok, What the trick to deleting all files from directory and still leaving the directory intact. I have obviously tried everything except for the correct thing I basically want the equivalent of: Del c:\directory\*.* /s So, directory still exists after the delete. This is so

[Nant-users] Versioning the Assembly

2004-04-06 Thread Bob Archer
Ok, Heres the kicker. I am using the Version task to create my build number. Now, how do I update the version numbers of the assemblies to match? I assume checking out the AssemblyInfo.cs files which I can do, updating them (not so sure about) and checking them back in. If anyone can

RE: [Nant-users] Versioning the Assembly

2004-04-06 Thread Bob Archer
Title: Message DUH? The asminfo task how did I miss that. Thanks folks! Bob From: Clayton Harbour [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 11:20 AM To: Bob Archer; [EMAIL PROTECTED] Subject: RE: [Nant-users] Versioning the Assembly Hi Bob

RE: [Nant-users] Access denied using copy task for ASP.Net project

2004-04-07 Thread Bob Archer
Well, ASP.Net is actually supposed to make copies of the DLL's in the bin folder and use the copies. It does this to facilitate XCOPY deployment and live updates. I'm not sure why you are having the problem. Are you ALWAYS able to copy them using the command line? Have you tried to use the

RE: [Nant-users] Compiling with .NET Framework 1.1

2004-04-08 Thread Bob Archer
I put this as the first line of my build script. property name=nant.settings.currentframework value=net-1.1/ I think there are a few other ways to do it also. Bob From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Beaudet Sent: Thursday, April 08,

RE: [Nant-users] Config Files?

2004-04-09 Thread Bob Archer
You know, you can create a user specific config file and just specify it in the main config file. This way, each developer and/or test server can have the connect strings there. If the user.config isn't there, it doesn't error, if it is there, those settings override what is in web.config

RE: [Nant-users] VB Reference Projects

2004-04-20 Thread Bob Archer
Yes, if you use the solution task it will read the references and dependencies from the projects. Bob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael A. Angelo Sent: Tuesday, April 20, 2004 11:00 AM To: [EMAIL PROTECTED] Subject: [Nant-users] VB

[Nant-users] Digest and individual

2004-04-22 Thread Bob Archer
Whomever this may concern. I have the my list preferences set to get digest, which I get, but I still get all the individual emails... Help ! Also, can the digest be a bit bigger? I mean, a digest with 3 messages isn't cutting down on my inbox by much. Thanks, Bob

RE: [Nant-users] 403 forbidden

2004-05-10 Thread Bob Archer
You probably have to set up a Webmap tag to point the web virtual directory to its physical directory. Bob From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Sandeep Sudheendra Sent: Monday, May 10, 2004 9:16 AM To: [EMAIL PROTECTED] Subject: [Nant-users] 403

RE: [Nant-users] Nant VS. Visual Studio Deployment Project

2004-04-26 Thread Bob Archer
It's definitely the best tool for the money! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael A. Angelo Sent: Monday, April 26, 2004 9:55 AM To: [EMAIL PROTECTED] Subject: [Nant-users] Nant VS. Visual Studio Deployment Project Can no one arm me

[Nant-users] Nightly build of Contrib?

2004-04-28 Thread Bob Archer
Hi All, If I download the nightly build of NAnt which it looks like is April 24, 2004 date. Do I need to match that to the NAnt Contrib nightly build? Or, do I run with NAntContrib .84? The reason I ask I dont see a place to dl a NAnt Contrib nightly build. Thanks, Bob

[Nant-users] Doc...

2004-04-28 Thread Bob Archer
Hmm It seems that if I unzip the NAnt and NAntContrib into the same folder (am I supposed to do that?) Some of the NAntContrib doc overlays the Nat doc. Why does this happen? Or am I doing something wrong? Thanks Bob

[Nant-users] spaces in paths??

2004-04-29 Thread Bob Archer
Hi All, I am doing this: exec program=db_ghost basedir=c:\program files\DB Ghost\ commandline=c:\program files\DB Ghost\SelectionLogs\ValidateAndUpdateSQLFin.xml / But, I think I need what is passed to dbGhost to be surrounded by double quotes? I have tried a few obvious

[Nant-users] get version from dll?

2004-04-30 Thread Bob Archer
Hi All, I am creating a build script that deploys our last successful daily build to our QA machine. How could I get the version/build number from a dll? Any ideas? I could get the last build number from the build number file that my version task uses, however, if that build failed

RE: [Nant-users] get version from dll?

2004-04-30 Thread Bob Archer
, assembly, exe. -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Friday, April 30, 2004 11:29 AM To: Bob Archer; [EMAIL PROTECTED] Subject: Re: [Nant-users] get version from dll? Bob, There's no task or function for this right now. Is that an assembly or a native dll

RE: [Nant-users] get version from dll?

2004-04-30 Thread Bob Archer
Title: Message Wow that looks promising. But, ??? Does this task run automatically? How would I access this info would it be: ${dll.majorversion} ??? Thanks a lot, Bob From: Price, Henry [mailto:[EMAIL PROTECTED] Sent: Friday, April 30, 2004 11:41 AM To: Bob Archer

RE: [Nant-users] get version from dll?

2004-04-30 Thread Bob Archer
:[EMAIL PROTECTED] Sent: Friday, April 30, 2004 12:01 PM To: Bob Archer; [EMAIL PROTECTED] Subject: RE: [Nant-users] get version from dll? Yeah, just put it in a target (if you want), define the properties first (I'm not sure you HAVE to do it first, but I always do). Something like

[Nant-users] delete all files and folders in a directory

2004-04-30 Thread Bob Archer
I still cant seem to delete all files and folders in a directory what is the correct pattern. Here is what I have: delete failonerror=true verbose=false fileset includes name=\\qaevolution2003\wwwroot\Geac.QA\** / excludes name=\\qaevolution2003\wwwroot\Geac.QA\dev.config /

RE: [Nant-users] delete all files and folders in a directory

2004-04-30 Thread Bob Archer
I guess I should clarify this: I still cant seem to delete all files and folders in a directory WITHOUT deleting that directory. BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Bob Archer Sent: Friday, April 30, 2004 2:11 PM To: [EMAIL PROTECTED

RE: [Nant-users] get version from dll?

2004-04-30 Thread Bob Archer
30, 2004 12:50 PM To: Ian MacLean Cc: Price, Henry; Bob Archer; [EMAIL PROTECTED] Subject: Re: [Nant-users] get version from dll? actually you can set the properties from the function as well. Like: script language=C# prefix=script code![CDATA[ [Function(get-file

RE: [Nant-users] gac capability from msi

2004-05-03 Thread Bob Archer
There is a 5/02 NAnt build up their, but not one from that date for NAnt contrib. Do these need to be the same build to work? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ian MacLean Sent: Monday, May 03, 2004 12:14 PM To: Michael A. Angelo Cc: 'James

[Nant-users] copy file problem

2004-05-04 Thread Bob Archer
Im using the 5/3 nightly build with the following script: target name=CopyToQA description=Copy to QA directory. echo message=Copy runtime files to QA. / copy todir=\\qaevolution2003\wwwroot\Geac.QA fileset basedir=\\devevolution2k3\C$\DailyBuild\ includes name=** / /fileset

RE: [Nant-users] copy file problem

2004-05-04 Thread Bob Archer
04, 2004 10:39 AM To: Bob Archer; [EMAIL PROTECTED] Subject: RE: [Nant-users] copy file problem I think the includes should either be *.*, or if you want to use the ** shorthand value then you also need to specify a partial path. I happen to have been looking at this this mrning and that's

[Nant-users] nant task

2004-05-19 Thread Bob Archer
If I use the nant task, with the logger setting for the top level task be passed to the next build file? Or, is there a property I need to set? Bob

[Nant-users] property names

2004-05-20 Thread Bob Archer
Are property names case sensitive? I didnt see anything that specified this info in the doc? Thanks, Bob

RE: [Nant-users] solution task, no rebuild option?

2004-06-11 Thread Bob Archer
AM To: Bob Archer; [EMAIL PROTECTED] Subject: RE: [Nant-users] solution task, no rebuild option? Yes, I also ended up creating a target clean to do that. But do you think that there will be more development on this front, including support for building individual projects, etc.? I know

RE: [Nant-users] A task to find out assembly info?

2004-06-11 Thread Bob Archer
Title: A task to find out assembly info? Check the functions, there is a class that can get this info. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Jiho Han Sent: Friday, June 11, 2004 4:30 PM To: [EMAIL PROTECTED] Subject: [Nant-users] A task to find out

[NAnt-users] MailLogger stopped working...

2006-01-25 Thread Bob Archer
Title: MailLogger stopped working... I was happily running builds on an XP Pro machine. Recently the emails stopped being sent. I am getting the following error. I assume a Windows update broke something. Anyone have any ideas? Here is the error message I am getting. MailLogger failed to

[NAnt-users] Are you still using NAnt

2006-01-25 Thread Bob Archer
Title: Are you still using NAnt Hello All, What is the status of NAnt? The last RC is quite old. Has this project been dropped due to MS Build being out there? Are there any plans to actually get to a 1.0 release? Thanks, BOb

RE: [NAnt-users] MailLogger stopped working...

2006-01-25 Thread Bob Archer
Of Bob Archer Sent: Wednesday, January 25, 2006 11:59 AM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] MailLogger stopped working... I was happily running builds on an XP Pro machine. Recently the emails stopped being sent. I am getting the following error. I assume a Windows

RE: [NAnt-users] Nant Support For NUnit For 2.2.5

2006-01-26 Thread Bob Archer
Would it make more sense to create a .config for NAnt and add a binding redirect to tell it to use the 2.2.5 version of NUnit? BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gary Feldman Sent: Thursday, January 26, 2006 6:12 PM To:

[NAnt-users] Mail Logger...

2006-01-27 Thread Bob Archer
Title: Mail Logger... Is there a way for the MailLogger to send on a port other than the default port 25? BOb

[NAnt-users] RC?

2006-07-24 Thread Bob Archer
To any NAnt devs/pms on the list... Version .85 has been in release candidates for over a year. When will this version be released? Also, do RC's generally have breaking changes? A couple for .85 did and that just didn't seem like the way to go for me. Also, how accurate is the road map out

Re: [NAnt-users] web projects

2006-07-24 Thread Bob Archer
I would assume you are deploying with a file copy. So, you have to provide a file path to which NAnt copies the file. I guess you could read something in the solution/project and munge it into a file path. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Re: [NAnt-users] Recursive call of the build file

2006-07-28 Thread Bob Archer
foreach item=String in=embedded,type2,type3 delim= , property=tt Try removing the space in the delim attribute. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bonio Lopez Sent: Friday, July 28, 2006 10:52 AM To: nant-users@lists.sourceforge.net

Re: [NAnt-users] Recursive call of the build file

2006-07-28 Thread Bob Archer
/latest/help/tasks/foreach.html, example v) -Original Message- From: Bob Archer [mailto:[EMAIL PROTECTED] Sent: Freitag, 28. Juli 2006 16:02 To: Bonio Lopez; nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] Recursive call of the build file foreach item=String in=embedded,type2

Re: [NAnt-users] Passing nant properties as paramaters to a function?

2006-08-02 Thread Bob Archer
I'm pretty sure when you are already in an evaluation block you don't need to nest them. Try this: echo message=${file::copy-file-contents(scriptfile,fix.name} / BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Craig Callender Sent: Wednesday,

Re: [NAnt-users] Can i use nant for typical java source tree?

2006-08-15 Thread Bob Archer
I think youd have to use the exec task to compile the Java. Or, write a NAnt task which wraps the Java compiler. BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Barry Sent: Tuesday, August 15, 2006 6:43 PM To: nant-users@lists.sourceforge.net Subject:

Re: [NAnt-users] exec with unless

2006-08-22 Thread Bob Archer
The exec task has an if and unless attribute Unless=${thisConfig = clean} BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert Hanson Sent: Tuesday, August 22, 2006 11:28 AM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] exec with unless

Re: [NAnt-users] exec with unless

2006-08-22 Thread Bob Archer
Or more correctly: unless=${thisConfig = clean} From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Archer Sent: Tuesday, August 22, 2006 12:01 PM To: Robert Hanson; nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] exec with unless The exec task

Re: [NAnt-users] Extending asminfo Task

2006-08-22 Thread Bob Archer
Of course, this would have to be planned for .9 or something as it would be a breaking change for .85. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gert Driesen Sent: Tuesday, August 22, 2006 2:47 PM To: 'James Johnston';

[NAnt-users] Road Map

2006-08-22 Thread Bob Archer
on this list, or the dev list? I put it on this list since you said the community should revise it. BOb -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Monday, July 24, 2006 11:38 AM To: Bob Archer; nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] RC

Re: [NAnt-users] fileset question

2006-08-25 Thread Bob Archer
I think you would only need to do: include name=${build.stageDir}/**/ BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Arnette, Bill Sent: Friday, August 25, 2006 3:27 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] fileset question

[NAnt-users] NAnt book...

2006-09-06 Thread Bob Archer
Not sure if all knew of this book, Expert .NET Delivery Using NAnt and CruiseControl.NET (Expert's Voice in .Net). But, I highly recommend it for new and experienced users alike. I consider myself a fairly advanced NAnt user and still was able to take many ideas away from this book and

Re: [NAnt-users] Shared Components

2006-09-12 Thread Bob Archer
If I have dll references, I have to get all of the developers to keep these components in the same place as I keep them for the build so that the hint path resolves. My first comment is having all your devs use the same directory structure is actually a good thing. It makes source control much

Re: [NAnt-users] Shared Components

2006-09-12 Thread Bob Archer
. BOb -Original Message- From: Eric Fetzer [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 12, 2006 1:43 PM To: Bob Archer; Nant Users Subject: RE: [NAnt-users] Shared Components Thanks for your reply Bob and Rod! We've got a new twist that developed in a meeting this morning. We're

Re: [NAnt-users] Shared Components

2006-09-12 Thread Bob Archer
Fetzer [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 12, 2006 2:12 PM To: Bob Archer; Nant Users Subject: RE: [NAnt-users] Shared Components Actually, John Mischel at Microsoft put out an article entitled Project Structure Best Practices where he said (note paragraph 2): There are several

Re: [NAnt-users] Could not load type... *.Global

2006-09-26 Thread Bob Archer
Are you sure your web app is set to run in the correct version of ASP.Net? You can check this in the virtual directory properties in the ASP.Net tab. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Fetzer Sent: Tuesday, September 26, 2006 11:41

Re: [NAnt-users] Could not load type... *.Global

2006-09-26 Thread Bob Archer
It would help to see your build file. Are you using the solution task or the csc or vbc task? BOb -Original Message- From: Eric Fetzer [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 26, 2006 2:55 PM To: Eric Fetzer; Bob Archer; Nant Users Subject: Re: [NAnt-users] Could not load

Re: [NAnt-users] Could not load type... *.Global

2006-09-27 Thread Bob Archer
name=D:\myProject\Data Access Application Block\Microsoft.ApplicationBlocks.Data.csproj / /projects /solution /target /project --- Bob Archer [EMAIL PROTECTED] wrote: It would help to see your build file. Are you using the solution task or the csc or vbc task? BOb

Re: [NAnt-users] Could not load type... *.Global

2006-09-28 Thread Bob Archer
. My guess is there is something in the config that you could set also. BOb -Original Message- From: Eric Fetzer [mailto:[EMAIL PROTECTED] Sent: Thursday, September 28, 2006 1:27 PM To: Bob Archer; Nant Users Subject: Re: [NAnt-users] Could not load type... *.Global It runs great

Re: [NAnt-users] Calling other Nant build projects from within acurrently running Nant build question?

2006-09-29 Thread Bob Archer
Title: Message Have you tried the NANT task? BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Mayert Sent: Friday, September 29, 2006 10:58 AM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Calling other Nant build projects from within

Re: [NAnt-users] VS2005 Web Application Projects

2006-10-03 Thread Bob Archer
Your probably going to have to use the NAntcontrib MSBUILD task or just use the exec task to call MSBuild. Currently Nant doesn't support 2.0 solution files. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nemegeer, Marc Sent: Tuesday, October 03,

Re: [NAnt-users] VS2005 Web Application Projects

2006-10-03 Thread Bob Archer
I think aspnet_compiler is used for Web Site projects not for Web Application projects. The difference is that a Web Site does not actually have a project (.csproj/.vbproj) file where a web application project does. So, for a Web Application project msbuild should compile the DLL. There are

Re: [NAnt-users] VS2005 Web Application Projects

2006-10-03 Thread Bob Archer
: Tuesday, October 03, 2006 12:59 PM To: Bob Archer; nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] VS2005 Web Application Projects It is also not very evident how to create library or dll references with a web project since you can't use the csc target. One approach is to copy

[NAnt-users] .85 RC...

2006-10-11 Thread Bob Archer
So, I think version .85 RC4 has been out long enough to make a release? What are the plans? Once again, I would be happy to help with product roadmaps and release plans I know this is overhead most developers dont like to deal with. BOb

Re: [NAnt-users] Conditional looping within a NAnt script (is therea while' task?)

2006-10-16 Thread Bob Archer
Why not just use windows scheduler to run the .build every 20 minutes or whatever. This is actually what we are doing now (poor mans continuous integration). Although we are working on setting up CC.Net to do this correctly. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [NAnt-users] Can't use NAnt

2006-10-16 Thread Bob Archer
Do you have the framework SDK installed, or just the runtime? BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Piepgrass Sent: Monday, October 16, 2006 3:35 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Can't use NAnt I'm running

Re: [NAnt-users] Hello everyone I am trying to compile a webproject in VS2005. I am getting an error.

2006-10-25 Thread Bob Archer
It helps to see the nant log output. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kumar .S Sent: Wednesday, October 25, 2006 11:56 AM To: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Hello everyone I am trying to compile a webproject in VS2005. I

Re: [NAnt-users] Hello everyone I am trying to compile a webproject in VS2005. I am getting an error.

2006-10-25 Thread Bob Archer
\omega\web\src\ASP\Customermail\). I assume you are using a Web Site project not a Web Application? Can you build the Web Site in Visual Studio without a problem? From: Kumar .S [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 25, 2006 1:03 PM To: Bob Archer Subject: Re: [NAnt

Re: [NAnt-users] building nant tasks in parallel

2006-10-26 Thread Bob Archer
It seems to me that someone that wants this can run Nant in multiple processes rather that trying to make some of nant muti-threaded. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Richard Gavel Sent: Thursday, October 26, 2006 4:48 PM To:

Re: [NAnt-users] Trying to escape double quotes when using exec task ...

2006-11-09 Thread Bob Archer
For some reason I seem to remember that if you use two single quotes they will be transformed into a double quote. But, that may have been some other tool, we use so many of them. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alan Guedeney Sent:

Re: [NAnt-users] Does NAnt have a while capability?

2006-11-15 Thread Bob Archer
Can't cruise control do this for you by setting up a dependency on the output of the first projects which cause the other projects to kick off, etc.? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Frederick Sent: Wednesday, November 15,

Re: [NAnt-users] Help required for build numbering by NAnt script.

2006-11-27 Thread Bob Archer
Take a look at the version task and the asminfo task... with these you should be able to accomplish this. I think both of these tasks are in the contrib. dll. BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bobby Michael Sent: Friday,

Re: [NAnt-users] foreach task: Looping over file lines, property does not extend

2006-11-28 Thread Bob Archer
Hmmm... we do it like this and it works. property name=report.error value=false / property name=report.haserror value=false / foreach item=Line property=report.line in=ValidateAndUpdateSQL-eFinancials2.txt do property unless=${report.error} name=report.error

Re: [NAnt-users] Best practices for NANT

2006-12-01 Thread Bob Archer
There is actually a book out titled: Expert .NET Delivery Using NAnt and CruseControl.NET http://books24x7.com/toc.asp?bkid=12610 It shows some pretty good guidelines that you can follow. But, the bottom line is the it depends on your shop/ application/etc as to how you set-up and

[NAnt-users] iif type expression

2006-12-01 Thread Bob Archer
Is there a simple way to do an immediate if in an expression: Basically if a property value = CSharp I want to return .cs and if it is VB I want to return .vb ?? I want to use this in the asminfo task something like: asminfo ouput=AssemblyInfo.${WHAT goes here}

[NAnt-users] Asminfo task

2006-12-01 Thread Bob Archer
What is the trick to get this task working? I am getting the following error: AssemblyInfo file 'C:\Development\eFramework3\Builder\AssemblyInfo.cs' could not be generated. Assembly attribute with type 'CLSCompliantAttribute' could not be loaded. Here is the task from my build file:

Re: [NAnt-users] ASP.NET Deployment Package via NAnt

2006-12-04 Thread Bob Archer
I haven't done it yet, but it's in the plan. Basically, we use InstallShield to build our installs. IS comes with a stand alone command line driven tool to build installs. Of course, if you are looking at a free tool, I would take a look at WIX. This should also be easily to integrate into nant

Re: [NAnt-users] [solution] Skipping [Release]

2006-12-08 Thread Bob Archer
Are you deleting all the OBJ/Bin folders/files of those projects first? If there is an existing DLL/EXE with a later date than all of the source then the project/solution will be skipped. BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

[NAnt-users] Fileset problems

2006-12-08 Thread Bob Archer
I don't know why I can never get the file sets to work the way I want them to... One basic question though, if I want to include a directory that would be excluded by a pattern would that be a problem? For example, I want to delete a directory named ConfigWeb, but I want to exclude all

Re: [NAnt-users] solution tag - change build path

2006-12-26 Thread Bob Archer
You can create a new configuration in your solution (in VS) with the output directory you want to use, then you can build that configuration from within your Nant script. BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael She

Re: [NAnt-users] Getting missing directive or assembly reference error.

2006-12-28 Thread Bob Archer
You might want to use the class browser or reflector to ensure the case of your name space is correct. BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nguyen, Daniel Sent: Thursday, December 28, 2006 12:37 PM To:

Re: [NAnt-users] XML-Insert?

2007-01-03 Thread Bob Archer
See docs for XMLPeek and XMLPoke tasks. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kyle Schmitt Sent: Wednesday, January 03, 2007 5:17 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] XML-Insert? Is there an xml-insert task for

[NAnt-users] Nested foreach

2007-01-05 Thread Bob Archer
Is it possible to have nested foreach loops? Nant doesn't seem to like it? BOb - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions

Re: [NAnt-users] Nested foreach

2007-01-05 Thread Bob Archer
Yes, thanks... I found my problem. I had a close tag on my opening foreach tag like foreach blah blah / and didn't notice it right away. BOb From: Nguyen, Daniel [mailto:[EMAIL PROTECTED] Sent: Friday, January 05, 2007 7:12 PM To: Bob Archer; nant

Re: [NAnt-users] Compiling VB6 Web Project

2007-01-08 Thread Bob Archer
You will have to do that yourself... You can go to the following URL to manage your Nant mail list subscriptions: http://nant.sourceforge.net/mailinglists.html BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kirti Krishnaswamy

[NAnt-users] Sending email...

2007-01-08 Thread Bob Archer
Ok, I hope I'm not missing a send email task... Is there a way to have Nant send email when not using the MailLogger? I am using CC.net which uses the XMLLogger. I basically want to send the email to a list of users in a text file. Any help? Thanks, BOb

[NAnt-users] Nant.onfailure

2007-01-09 Thread Bob Archer
Can someone give me a bit more info about nant.onfailure property? For example, when exactly does this target run? Also... a lot of the built in properties show as deprecated. It would be nice, if possible that deprecated items specified in the docs also specified what should be used instead

[NAnt-users] echo a blank line

2007-01-10 Thread Bob Archer
Is there an easy way to echo a blank line in the log? Thanks, BOb - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT

Re: [NAnt-users] Questions about Nant version 0.85.1583

2007-01-16 Thread Bob Archer
Nant should target whatever version of the FW it is running on. Trying forcing it to use 2.0 by adding the following to the command line: -t:net-2.0 BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jiang,Wenjing Sent: Tuesday,

Re: [NAnt-users] Error SDK for the net-x.x framework is not availableor not configured

2007-01-23 Thread Bob Archer
You should have the SDK for each fw version on the build machine. If you have Studio that actually includes the SDK's. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Modrall Sent: Tuesday, January 23, 2007 4:58 PM To:

Re: [NAnt-users] Error SDK for the net-x.x framework is notavailableor not configured

2007-01-23 Thread Bob Archer
] On Behalf Of Mark Modrall Sent: Tuesday, January 23, 2007 5:15 PM To: Bob Archer; nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Error SDK for the net-x.x framework is notavailableor not configured Our integration build machine has no version of studio on it; only the 1.1 and 2.0

Re: [NAnt-users] Error SDK for the net-x.x framework is notavailableor not configured

2007-01-23 Thread Bob Archer
needs to be expanded in the doc. Perhaps in the Running Nant topic. BOb From: Mark Modrall [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 5:25 PM To: Bob Archer; nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] Error SDK for the net

Re: [NAnt-users] Make Copy and Delete tasks less verbose

2007-01-25 Thread Bob Archer
That's all I get when I have verbose set to false, which is the default on those tasks I believe. Here's an example from one of our logs: [delete] Deleting 4376 files. [delete] Deleted 43 directories. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

Re: [NAnt-users] NAnt and alternative architectures

2007-01-29 Thread Bob Archer
I agree... There is no reason why you couldn't use it. Basically, for your build/compile target you would just have to use the exec task to call the gcc compiler. Or, if you are really ambitious you could create a gcc compiler task. I don't think you would need to port Nant to gcc. BOb

Re: [NAnt-users] Hello People

2007-01-30 Thread Bob Archer
What are you using in the exec tag? Are you running msbuild? I am using MS build in our VS 2005 project... basically replacing the solution task. We do compile web applications fine but we don't use the new web site (file system) project model. BOb

Re: [NAnt-users] 1.1 and 2.0 in same build

2007-02-08 Thread Bob Archer
You can use the -t: command line parameter to specify the framework version to target. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Fetzer Sent: Thursday, February 08, 2007 11:54 AM To: Nant Users Subject: [NAnt-users] 1.1 and 2.0 in same

Re: [NAnt-users] 1.1 and 2.0 in same build

2007-02-08 Thread Bob Archer
- From: Eric Fetzer [mailto:[EMAIL PROTECTED] Sent: Thursday, February 08, 2007 12:07 PM To: Bob Archer; Nant Users Subject: Re: [NAnt-users] 1.1 and 2.0 in same build This would force me to have different build files for each. I was looking for something inline. For example: solution

Re: [NAnt-users] 1.1 and 2.0 in same build

2007-02-08 Thread Bob Archer
] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Fetzer Sent: Thursday, February 08, 2007 12:11 PM To: Eric Fetzer; Bob Archer; Nant Users Subject: Re: [NAnt-users] 1.1 and 2.0 in same build It doesn't even look like you can specify the -t using the nant task. This is rough! Any help? That means

Re: [NAnt-users] bug in path::get-directory-name()?

2007-02-14 Thread Bob Archer
You may want to get the code and look at the tests for this function. But, I assume it returns everything in a string prior to the final back(forward)slash. Since it returns a string the information is apparently just the path name. BOb -Original Message- From: [EMAIL PROTECTED]

Re: [NAnt-users] bug in fileset ?

2007-02-15 Thread Bob Archer
How about changing it to: delete if=${property::exists('test.file')} fileset include name=${test.file}/ /fileset /delete From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stephane Hamel Sent: Thursday,

Re: [NAnt-users] fileset exclude / include priorities

2007-02-27 Thread Bob Archer
Yes, these have always been a struggle with me too. I asked on the list if someone could explain/document better how they worked, and if there was any precendence etc, but so far no info is forth coming. I may just have to drill into the code/tests myself... the horror! BOb -Original

[NAnt-users] Run regsvr32 on remote machine

2007-02-27 Thread Bob Archer
Anyone doing or come up with a way to run regsvr32 on a deployment machine... not the one Nant is running on. Perhaps someone has written a WMI task that does this they would like to share? BOb - Take Surveys.

Re: [NAnt-users] Run regsvr32 on remote machine

2007-02-27 Thread Bob Archer
poke around and look at the sysinternals command line tools. im sure one of them is a remote execute, you'd just need an exec wrapper around it -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Bob Archer Sent: Tuesday, February 27

Re: [NAnt-users] Change basedir for target

2007-02-28 Thread Bob Archer
How about if you put a build script that just calls that task in the relevant directory and then call it with a Nant task or an exec task? Isn't the base directory the folder which nant was run from? Or, is it the folder the .exe is in? BOb From:

Re: [NAnt-users] Email notification on Nunit failures

2007-04-05 Thread Bob Archer
You could use the mail logger and set up a fail build email address list. Or, you could use the mail task. BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nikesh Patel Sent: Thursday, April 05, 2007 11:16 AM To:

Re: [NAnt-users] Why aren't Nant / NantContrib Assemblies signed

2007-04-10 Thread Bob Archer
I'd rather see the official assemblies not signed. One issue is the version probing that signing adds to the assembly. Although this is admittedly a smaller issue for Nant since most people don't reference Nant's binaries unless they are extending Nant. BOb -Original Message- From:

[NAnt-users] onfailure

2007-04-12 Thread Bob Archer
Does anyone know if I use the nant.onfailure property and set it to a task... when a failure occurs does the build stop after the onfailure task runs, or does it keep running? Thanks, BOb - Take Surveys. Earn Cash.

Re: [NAnt-users] onfailure

2007-04-12 Thread Bob Archer
Sorry, I mean of course set it to a target not a task. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Archer Sent: Thursday, April 12, 2007 11:38 AM To: [EMAIL PROTECTED] Subject: [NAnt-users] onfailure Does anyone know if I use

  1   2   3   4   >