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

>Category: Tasks
Group: 0.85
>Status: Closed
>Resolution: Fixed
Priority: 5
Submitted By: James Preston (j_m_preston)
>Assigned to: Gert Driesen (drieseng)
Summary: Error creating VC++ project in ProjectFactory

Initial Comment:
In the CreateProject method of the
NAnt.VSNet.ProjectFactory class, NAnt tries to
determine the type of a project by the XML project file
contents if it does not recognise the project file
extension. However, if the project is a Visual C++
project (i.e. if VcProject.IsSupported returns true),
the method creates a Visual C# project object
(CSharpProject object) instead of a Visual C++ project
(VcProject object).

The code should read:

} else if (VcProject.IsSupported(xmlDefinition)) {
    return new VcProject(solution, projectPath,
xmlDefinition, 
        solutionTask, tfc, gacCache,
referencesResolver, outputDir);
}


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

>Comment By: Gert Driesen (drieseng)
Date: 2005-02-08 21:48

Message:
Logged In: YES 
user_id=707851

This very stupid bug is now fixed in cvs.

Thanks for the report !

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

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=402868&aid=1118887&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