Fixed the regex pattern match on the argument.
Changed:
Match match = Regex.Match(arg, @"-D:(\w+)=(\w*)");
To:
Match match = Regex.Match(arg, @"-D:(\w+.*)=(\w*.*)");
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=455591
Submitted fix to nant-dev.
Fixed the regex pattern match on the argument.
Changed:
Match match = Regex.Match(arg, @"-D:(\w+)=(\w*)");
To:
Match match = Regex.Match(arg, @"-D:(\w+.*)=(\w*.*)");
Logged In: YES
user_id=25244
Fixed in CVS as requested here on 2002-03-28.
Logged In: YES
user_id=25244
Fixed in CVS as requested here on 2002-03-28.