| 401 | } |
| 402 | |
| 403 | void WriteSlnx(std::ostream& slnx, Solution const& solution) |
| 404 | { |
| 405 | cmXMLWriter xw(slnx); |
| 406 | cmXMLDocument xml(xw); |
| 407 | cmXMLElement xmlSolution(xml, "Solution"); |
| 408 | WriteSlnxSolutionConfigurationPlatforms(xmlSolution, solution); |
| 409 | for (Solution::Project const* project : solution.Projects) { |
| 410 | WriteSlnxProject(xmlSolution, solution, *project); |
| 411 | } |
| 412 | for (Solution::Folder const* folder : solution.Folders) { |
| 413 | WriteSlnxFolder(xmlSolution, solution, *folder); |
| 414 | } |
| 415 | for (Solution::PropertyGroup const* pg : solution.PropertyGroups) { |
| 416 | WriteSlnxPropertyGroup(xmlSolution, *pg); |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | } |
| 421 | } |
no test coverage detected
searching dependent graphs…