RE: [nant-dev] Command line parsing bug

2002-12-11 Thread Colin Young
I have a class I wrote that does some command line processing (the idea was to make it easier to define switches and expand file names for command line programs). It probably isn't the most elegant or powerful bit of code in the world, but if whoever might look at this problem is interested, I'd

RE: [nant-dev] Command line parsing bug

2002-12-11 Thread Dag Christensen
First the obvious to stay on topic, just so that I can include a neat little hint :-) Either there should be a try-catch around the Path.GetFullPath method, or (better) use Directory.GetFiles and loop through the files found to allow wildcards. So the tip: if you want to avoid typing full

RE: [nant-dev] Command line parsing bug

2002-12-11 Thread Cort Schaefer
] Command line parsing bug First the obvious to stay on topic, just so that I can include a neat little hint :-) Either there should be a try-catch around the Path.GetFullPath method, or (better) use Directory.GetFiles and loop through the files found to allow wildcards. So the tip: if you want