[NAnt-users] Adding Reference to Crystal DLL's

2007-10-17 Thread Eric Fetzer
Does anybody have any experience doing this? I searched the archive and found that NAnt doesn't scan the GAC if it doesn't find references. So I added AssemblyReferences to the dll's directly. Well, that doesn't seem to work because they don't get thrown into the csc.exe call. Here's what I

Re: [NAnt-users] nant is trying to use al(assembler linker) version 1.0in the 2.0 profile!!

2007-10-17 Thread Gert Driesen
Hi Francisco, When Nant 0.85 was released, Mono did not ship with an assembly linker for the 2.0 profile. Since we had no idea if it would ever be shipped with one, and had no idea how it would be named we could not be forward compatible and as such we always used the 1.0 AL. In currently night

Re: [NAnt-users] How to make nant find nunit assemblies included innant distribution?

2007-10-17 Thread Gert Driesen
Hi Francisco, It's already late here, so here a very quick reply. You can use something like this: But I'm sure there are less ugly constructs ;-) Gert -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Francisco Figueiredo Jr. Sent: woensdag 17 oktobe

[NAnt-users] nant is trying to use al(assembler linker) version 1.0 in the 2.0 profile!!

2007-10-17 Thread Francisco Figueiredo Jr.
Hi all, I'm getting problems compiling Npgsql with nant. It seems to be using al version 1.0 instead of al version 2.0. Check the full output here: http://pgfoundry.org/forum/message.php?msg_id=1002245 Note that on ms.net it works ok. Is there any flag I should put to make nant use the corre

[NAnt-users] How to make nant find nunit assemblies included in nant distribution?

2007-10-17 Thread Francisco Figueiredo Jr.
Hi all, This is what I have in NpgsqlTests.build file: But I don't know what to put in references element to make nant find the included nunit assemblies. I h

Re: [NAnt-users] Zip multiple files in different directories

2007-10-17 Thread Bob Archer
I don't see a setting on the zip task to 'not' include folder names. But, you could try to just use the exec tag with winzip or 7zip or such. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Markus Ewald Sent: Wednesday, October 17, 2007 7:30 AM To: n

[NAnt-users] Zip multiple files in different directories

2007-10-17 Thread Markus Ewald
Hi! I'm using NAnt to build multitple C# projects, each project writes its binaries in its own bin folder. After compilation has finished, I want my build script to zip up all the generated binaries into one .zip archive as a flat collection of files. My current solution is to copy all the bin

[NAnt-users] problem in custom nant task

2007-10-17 Thread Ashish Mittal
HI all, I am facing problem in creating the custom NAnt task having nested build elements. My task should look like this I am writng the telnet utility in which I want to pass the all commands along with command name, failure message, success message to C# appli