Bugs item #1182510, was opened at 2005-04-13 21:48
Message generated for change (Comment added) made by drieseng
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=402868&aid=1182510&group_id=31650

Category: Tasks
Group: cvs
>Status: Closed
>Resolution: Fixed
Priority: 5
Submitted By: Scott Monte (scottmonte)
>Assigned to: Gert Driesen (drieseng)
Summary: <solution> task, <excludeprojects> not excluding

Initial Comment:
I could never get it to exclude my database projects and 
get rid of the warnings in our cruisecontrol build, so I 
downloaded the source and traced it.

The issue is in SolutionBase.LoadProjects (i only 
debugged for version 7.0) line 345 is

                bool caseSensitive = 
PlatformHelper.IsVolumeCaseSensitive(projectPath);

then later line 352

                    if (string.Compare(excludedProjectFile, 
projectPath, caseSensitive, CultureInfo.InvariantCulture) 
== 0) {


String.Compare takes an ignoreCase parameter, so 
caseSensitive should be passed as !caseSensitive. 
Fixing that, my build started ignoring my dbps and all is 
well.

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

>Comment By: Gert Driesen (drieseng)
Date: 2005-04-16 09:44

Message:
Logged In: YES 
user_id=707851

Good catch ! This is now fixed in cvs.

Thanks for the report !

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

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=402868&aid=1182510&group_id=31650


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to