Hi,

here's a small patch proposal for VCProject.cs. 

When using the solution task with .vcproj (c++) projects, additional include 
directories are concatenated to a single "/I folder1;folder2" parameter in the 
call to cl (splitting is only based on comma). This doesn't work, as the 
compiler documentation reports this : /I "To add more than one directory, use 
this option more than once."

Under VS.Net 2003 at least, additional include directories are separated by ";" 
rather than "," so I propose this :

263c263
<                 foreach (string includeDir in includeDirs.Split(',')) {
---
>                 foreach (string includeDir in includeDirs.Split
(",;".ToCharArray())) {


regards,

Thibaut Barrère


-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to