| 385 | }; |
| 386 | |
| 387 | void WriteSlnxPropertyGroup(cmXMLElement& xmlParent, |
| 388 | Solution::PropertyGroup const& pg) |
| 389 | { |
| 390 | cmXMLElement xmlProperties(xmlParent, "Properties"); |
| 391 | xmlProperties.Attribute("Name", pg.Name); |
| 392 | if (pg.Scope == Solution::PropertyGroup::Load::Post) { |
| 393 | xmlProperties.Attribute("Scope", "PostLoad"); |
| 394 | } |
| 395 | for (auto const& i : pg.Map) { |
| 396 | cmXMLElement(xmlProperties, "Properties") |
| 397 | .Attribute("Name", i.first) |
| 398 | .Attribute("Value", i.second); |
| 399 | } |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | void WriteSlnx(std::ostream& slnx, Solution const& solution) |
no test coverage detected
searching dependent graphs…