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

Category: Core
Group: 0.85
Status: Open
Resolution: None
Priority: 5
Submitted By: James Preston (j_m_preston)
Assigned to: Nobody/Anonymous (nobody)
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);
}


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

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