| 259 | } |
| 260 | |
| 261 | void WriteSlnPropertyGroup(std::ostream& sln, |
| 262 | Solution::PropertyGroup const& pg) |
| 263 | { |
| 264 | cm::string_view const order = pg.Scope == Solution::PropertyGroup::Load::Pre |
| 265 | ? "preSolution"_s |
| 266 | : "postSolution"_s; |
| 267 | sln << "\tGlobalSection(" << pg.Name << ") = " << order << '\n'; |
| 268 | for (auto const& i : pg.Map) { |
| 269 | sln << "\t\t" << i.first << " = " << i.second << '\n'; |
| 270 | } |
| 271 | sln << "\tEndGlobalSection\n"; |
| 272 | } |
| 273 | |
| 274 | } |
| 275 |
no outgoing calls
no test coverage detected
searching dependent graphs…