| 249 | } |
| 250 | |
| 251 | static VsProjectType computeProjectType(cmGeneratorTarget const* t) |
| 252 | { |
| 253 | if (t->IsCSharpOnly()) { |
| 254 | return VsProjectType::csproj; |
| 255 | } |
| 256 | return VsProjectType::vcxproj; |
| 257 | } |
| 258 | |
| 259 | static std::string computeProjectFileExtension(VsProjectType projectType) |
| 260 | { |
no test coverage detected
searching dependent graphs…