Patches item #618337, was opened at 2002-10-04 03:12
Message generated for change (Comment added) made by drieseng
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=474853&aid=618337&group_id=54790

Category: None
Group: None
>Status: Closed
>Resolution: Rejected
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
>Assigned to: Gert Driesen (drieseng)
Summary: Project names with spaces patch

Initial Comment:
private void AddProject(string projectLine)
{
// Fixed path for spaces - allen
// string pattern = @"^Project\(""(?<unknown>\S+)""\) 
= ""(?<name>\S+)"", 
""(?<path>\S+)"", 
""(?<id>\S+)""";
string pattern = @"^Project\(""(?<unknown>\S+)""\) 
= ""(?<name>.+)"", 
""(?<path>.+)"", 
""(?<id>\S+)""";

[snip]
        string unknown = match.Groups
["unknown"].Value;
        string name = match.Groups["name"].Value;
        // because nant doesn't support spaces -allen
name = name.Replace(" ", "");

}

----------------------------------------------------------------------

>Comment By: Gert Driesen (drieseng)
Date: 2004-09-04 07:03

Message:
Logged In: YES 
user_id=707851

SlingShot has been deprecated, try using the <solution> task 
instead.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=474853&aid=618337&group_id=54790


-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
_______________________________________________
NAntContrib-Developer mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nantcontrib-developer

Reply via email to