| 313 | namespace { |
| 314 | |
| 315 | bool NeedExplicitProjectPlatform(cm::string_view typeId) |
| 316 | { |
| 317 | // Some projects do not build interactively in the VS IDE unless they |
| 318 | // have an explicit platform, even if it matches the SLN platform. |
| 319 | if (typeId == Solution::Project::TypeIdCSharp || |
| 320 | typeId == Solution::Project::TypeIdDotNetCore) { |
| 321 | return true; |
| 322 | } |
| 323 | return false; |
| 324 | } |
| 325 | |
| 326 | void WriteSlnxSolutionConfigurationPlatforms(cmXMLElement& xmlParent, |
| 327 | Solution const& solution) |
no outgoing calls
no test coverage detected
searching dependent graphs…