[NAnt-users] strong name generation with nant using VBC task

2007-05-03 Thread Rosy Malhotra
Hi, I want to generate strong name using VBC task. If I am using Solution approach then it is generating the strong name automatically. But when we are using VBC task then it is giving errors. O am using keyfile approach and delay sign approach. Both are not working. My project already contains

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-03 Thread Erich Eichinger
As Gert states > Unless if you're sure that your build file will allow > you to run your unit tests on Mono or a specific version of the MS CLR ... Being able to specify the target clr version for my tests is a big issue. Does the NCoverExplorer task support this? I couldn't find anything in

Re: [NAnt-users] Sorting fileset

2007-05-03 Thread Alan Guedeney
was in the directory, it would> >>> be returned before > 2.sql. Obviously, since these files need to be> >>> run in order, this won't > do.> >>>> >>>

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-03 Thread David Keaveny
Of course, the alternative solution is to use Kiwidude's NCover and NCoverReport tasks (http://www.kiwidude.com/dotnet/doc/NCoverExplorer.NAntTasks/tasks/ncove r.html ) - they'll happily shell out to NUnit 2.4. It's a win-win situation - you get to use NUnit 2.4, and you get to see code coverage

Re: [NAnt-users] Sorting fileset

2007-05-03 Thread Griffin Caprio
on't do. >>> >>> Is there anyway I can accomplish this? >>> >>> Thanks, >>> Griffin Caprio >>> >>> >>> >>> >>> >>> >>> ---

Re: [NAnt-users] Sorting fileset

2007-05-03 Thread Bob Archer
>> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> ___ >> NAnt-users mailing list >> NAnt-users@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/nant-users &

Re: [NAnt-users] Sorting fileset

2007-05-03 Thread Griffin Caprio
;> - >> >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now.

Re: [NAnt-users] Sorting fileset

2007-05-03 Thread Ryan Anthony
___ > NAnt-users mailing list > NAnt-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nant-users > > __ NOD32 2238 (20070503) Information __ > > This message was checked by NOD32 antivirus system. > http://www.eset.com

Re: [NAnt-users] Sorting fileset

2007-05-03 Thread Bob Archer
Well, file names are strings. Can you name the files such as: 0001.sql 0002.sql Etc ??? If not, perhaps you could copy them to a folder with those names, then run them in order, then delete them. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Grif

[NAnt-users] Sorting fileset

2007-05-03 Thread Griffin Caprio
Hello all, I am trying to iterate through a directory of files that are numerically named: 1.sql 2.sql ... Using the foreach task is easy: However, this returns the list of files, sorted in text fashion, not n

[NAnt-users] Zip task: How to append to existing zip file?

2007-05-03 Thread Michael Craig
Is there a way to have 2 build files append to the same zip file? Currently, the zip gets deleted when the second build file runs. I don't see any option in the Zip task documentation. thanks Mike - Ahhh...imagining that irresistible "new c

Re: [NAnt-users] Solution task is skipping the projects whilecompilation

2007-05-03 Thread Gert Driesen
Rosy, The skipped projects are not configured to be built in Visual Studio when using the Debug configuration. You need to use the Configuration Manager (right-click solution and select Configuration Manager) to correct this. Gert _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-03 Thread Gert Driesen
Bob, I was actually planning on including the nunit-console in the box (for each supported target framework). But I could of course still allow you to override the path. Gert -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Archer Sent: donderdag 3 m

Re: [NAnt-users] Build Succeeded Why?

2007-05-03 Thread Gert Driesen
Hi Sabahat, Are you sure you're actually specifying the "build" target on the command-line ? You did not set a default target in your project file, and as a result you explicitly need to specify it when running the build project. If you try to build it, you'll get an error like this: Canno

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-03 Thread Jay Flowers
So you should all take a look at the work Grant Drake has done on this. He is the author of NCover Explorer. You know kiwidude.com... He has several tasks in the area. That might be all that is needed. Jay On 5/3/07, Gert Driesen <[EMAIL PROTECTED]> wrote: You're wrong on this. Unless if y

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-03 Thread SPEAR, Adrian, GBM
Correct - my bad. I confess I haven't tried it under Mono framework. It does work on 1.1 and 2.0 CLR where I run it from a Cruise Control .Net Nant build task where I can specify which version of Nant and target framework I want to run the whole build. Donuts on me - they might get squished in th

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-03 Thread Gert Driesen
You're wrong on this. Unless if you're sure that your build file will allow you to run your unit tests on Mono or a specific version of the MS CLR ... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of SPEAR, Adrian, GBM Sent: donderdag 3 mei 2007 16:03 To: '

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-03 Thread Bob Archer
I think it would. Decoupling Nant from a specific NUnit version would be very useful. Would you have to specify the path the EXE also? I personally don't install NUnit and basically follow the advice of Mike Roberts's How to setup a .Net Development tree articles. (With a few changes following some

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-03 Thread SPEAR, Adrian, GBM
To be honest - I don't see the need for a task to wrap nunit-console and the like (e.g. ncover.console.exe). As Bob states - just use an exec task to invoke the console application. I have created a simple .build file which depending upon parameters supplied will use exec to invoke typemock and n

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-03 Thread Vee Harwell
>From a user standpoint, I could definitely use that... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gert Driesen Sent: Thursday, May 03, 2007 8:52 AM To: Bob Archer; Erich Eichinger; nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] NUnit NAnt

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-03 Thread Gert Driesen
Hi Bob, I've been planning on adding an nunit-console task would be basically just be wrapper around nunit-console.exe. The only advantage would be that the nunit-console task can automatically invoke the nunit-console assembly and set the environment for the current target framework. Would s

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-03 Thread Bob Archer
Nothing against Nant. But, this is the reason a lot of people recommend running NUnit with the exec task. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Erich Eichinger Sent: Thursday, May 03, 2007 1:56 AM To: nant-users@lists.sourceforge.net Su

Re: [NAnt-users] Build Succeeded Why?

2007-05-03 Thread Gert Driesen
Sabahat, You'll have to provide more information if you want us to have a look at this. Can you share the sources ? Gert - Original Message - From: "Sabahat Adil" <[EMAIL PROTECTED]> To: Sent: Thursday, May 03, 2007 10:48 AM Subject: [NAnt-users] Build Succeeded Why? Hi, When i am

Re: [NAnt-users] Solution task is skipping the projects whilecompilation

2007-05-03 Thread Gert Driesen
Hi Rosy, I actually need at least both the solution file and all project files. Even better would be to give me the sources as well, as that would allow me to verify whether it successfully compiles. Gert - Original Message - From: "Rosy Malhotra" <[EMAIL PROTECTED]> To: "Gert Driesen

[NAnt-users] Build Succeeded Why?

2007-05-03 Thread Sabahat Adil
Hi, When i am building project with Visual Studio it give an error,but when i am building it with Nant this error doesn't recognize and the build succeeded. Why?What's the solution?My build script is: Regards, Sabahat

Re: [NAnt-users] Solution task is skipping the projectswhilecom pilation

2007-05-03 Thread Rosy Malhotra
It was already created project on the citrix machine, I have to compile and deploy the project using nant, not visual studio. Visual studio is not present in the Citrix machine Thanks and Regards, Rosy Malhotra From: Evans, Jonathan (2) [mailto:[EMAIL PROTEC

Re: [NAnt-users] Solution task is skipping the projects whilecompilation

2007-05-03 Thread Rosy Malhotra
I can share with you. Actually it is on citrix machine, I am coping the text from the .sln file and sending you. Thanks and Regards, Rosy Malhotra -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Thursday, May 03, 2007 1:20 PM To: Rosy Malhotra Subject: Re: [NAnt-u

Re: [NAnt-users] Solution task is skipping the projects while com pilation

2007-05-03 Thread Evans, Jonathan (2)
Is the solution correctly configured? In Visual Studio right-click on the Solution and select "Configuration Manager". Are the projects that are failing to compile checked? _ Jonathan Evans _ From: [EMAIL PROTECTED] [mailto:[EMAI

Re: [NAnt-users] Solution task is skipping the projects whilecompilation

2007-05-03 Thread Gert Driesen
Rosy, What version of NAnt are you actually using ? Gert - Original Message - From: "Rosy Malhotra" <[EMAIL PROTECTED]> To: Sent: Thursday, May 03, 2007 9:45 AM Subject: [NAnt-users] Solution task is skipping the projects whilecompilation Hi, My Solution task is skipping the pro

[NAnt-users] Solution task is skipping the projects while compilation

2007-05-03 Thread Rosy Malhotra
Hi, My Solution task is skipping the projects while compilation. Please tell me what should do in this case. ThirdPartyApp.compile: [solution] Starting solution build. [solution] Skipping 'Business.Questionnaire' [Debug] ... [solution] Skipping 'Data' [Debug] ... [solution] Skippin