Re: [NAnt-users] New to list - How best to create if-else-endifconstruct ...

2008-01-23 Thread Bob Archer
I don't think there is an else. But, I've found the following to be more readable. Move your echos elsewhere. Or create a separate target which can have echos and stuff in it. BOb

[NAnt-users] New to list - How best to create if-else-endif construct ...

2008-01-23 Thread Parrish, Ken
I'm new to this list, so am not sure if this question has been posted frequently or recently. I'm often frustrated when I need to create an if-else-endif construct in a Nant script. For example: e

Re: [NAnt-users] MKIISDIR failing on 0.86 Beta, works in 0.85

2008-01-23 Thread Dix, John
I forgot that I had modified the NAnt.exe.config file to support it and I had overwritten it. I changed the other values that I needed except that one. Thanks for the reminder! From: Bob Archer [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 23, 2008 11:05 AM To: Dix, John; nant-users@list

Re: [NAnt-users] MKIISDIR failing on 0.86 Beta, works in 0.85

2008-01-23 Thread Bob Archer
Do you have the nantcontrib dll in your nant bin folder? BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dix, John Sent: Wednesday, January 23, 2008 1:50 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] MKIISDIR failing on

[NAnt-users] MKIISDIR failing on 0.86 Beta, works in 0.85

2008-01-23 Thread Dix, John
I am receiving the following error: [nant] C:\enlistments\HenryScheinSC\SRC\MMS-Apps\eSignature\eSignature.build compile Buildfile: file:///C:/enlistments/HenryScheinSC/SRC/MMS-Apps/eSignature/eSignature. build Target framework: Microsoft .NET Framework 2.0

Re: [NAnt-users] Assembly File Sets and Additions

2008-01-23 Thread Chris Snider
Bob, Thanks for the reply. The particular script is for an internal framework we have, so I currently have all the targets in a single build file. Since all the DLL's that are produced from the script have a lot of common references, I was trying to get the common stuff in a reference asse

Re: [NAnt-users] Assembly File Sets and Additions

2008-01-23 Thread Bob Archer
If your using the latest nightly build, you can setup a patternset. Other than that I don't know a way. I assume you tried to use two references sections? Not sure if this is supported... the doc doesn't always say? You could create a target and put your fileset in it. Something like this:

[NAnt-users] Assembly File Sets and Additions

2008-01-23 Thread Chris Snider
The NAnt documentation lists the following example for modules type parameter of the csc/vbc task: Use the predefined set of assemblies to compile a C# assembly. How can I define an assembly set (or a reference set for tha