Re: [NAnt-users] Sorting fileset

2007-05-04 Thread Bob Archer
Yes, but you can append each file name delimiting it with either a cr lf or pipe or something else. BOb -Original Message- From: Griffin Caprio [mailto:[EMAIL PROTECTED] Sent: Friday, May 04, 2007 5:17 PM To: Bob Archer Cc: Ryan Anthony; nant-users@lists.sourceforge.net Subject: Re:

Re: [NAnt-users] Sorting fileset

2007-05-04 Thread Griffin Caprio
Bob, How would you load the file names into a property ? I always though properties were restricted to just "name=value" pairs. Is that not correct? Griffin On May 3, 2007, at 5:24 PM, Bob Archer wrote: > Put the file names in a property and sort them. Then loop through the > names in t

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-04 Thread Erich Eichinger
Hi, Any section in your app.config will override COMPLUS_VERSION. Thus COMPLUS_VERSION is the "weakest" hint which runtime to use. >From NUnit-Docs at >http://www.nunit.org/index.php?p=consoleCommandLine&r=2.2.10: "Note: If you use a section in the config file, it takes precedence over this

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-04 Thread Gert Driesen
Erich or Bob, can you verify whether COMPLUS_VERSION overrides the runtime version set in the configuration file of an app ? I guess it will, and this is one of the reasons why we perhaps shouldn't modify the ExternalProgramBase to set this environment variable. However, I like the idea of mak

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-04 Thread Erich Eichinger
Ok - obviously I still owe you some piece of information ;-) I'm want to build & test the same sources against all different platforms + clrversions from within 1 build file. -Erich From: Bob Archer [mailto:[EMAIL PROTECTED] Sent: Friday, Ma

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-04 Thread Erich Eichinger
> I (finally) understand your intentions. Glad, I finally could explain it sufficiently ;-) > Question is: does everyone that uses the exec task (or any > other task deriving from ExternalProgramBase) for launching > managed applications want (to force) the managed app to run > on the CLR ma

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-04 Thread Gert Driesen
Hi Erich, 1) I know about the COMPLUS_VERSION "trick", but instead I was planning on including versions of NUnit that have been built specifically for each support target framework. We already do this right now for NUnit, but we're just not including nunit-console yet. That way you don't need

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-04 Thread Gert Driesen
and what would the exec task do with this ? how will this ensure that the correct version of nunit-console is executed ? please enlighten me ;-) _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Erich Eichinger Sent: vrijdag 4 mei 2007 10:20 To: Gert Driesen; SPEAR, Adria

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-04 Thread Erich Eichinger
Maybe my proposal is misleading: the "--runtime==" argument from my example is only passed to the runtimeengine - and only if it is specified in the framework configuration in nant.exe.config. Erich From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Fri 200

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-04 Thread Gert Driesen
Eric, Not everyone program you start using will like the --runtime= argument. Configuring it on the framework level would also give the impression that it applies to all tasks. I'd still prefer an task, but if there's no interest in this and if there is, feel free to beat me to it ;-

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-04 Thread Erich Eichinger
After playing around a little bit, I found that using would be a convenient solution. "would" because unfortunately it is not possible to pass arguments to the runtimeengine. Otherwise the solution would be rather easy by configuring the frameworks within nant.exe.config. E.g.: [NAnt.exe.conf

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

2007-05-04 Thread Gert Driesen
Rosy, When using .NET 1.1, you specifiy the path to the key using the task since the .NET 1.1 VB compiler does not support this. You need to ensure that the key is at the expected path relative to the output directory. In your case, the Constants.snk file must be one level below ${dist.dir} si