| 257 | } |
| 258 | |
| 259 | static std::string computeProjectFileExtension(VsProjectType projectType) |
| 260 | { |
| 261 | switch (projectType) { |
| 262 | case VsProjectType::csproj: |
| 263 | return ".csproj"; |
| 264 | case VsProjectType::proj: |
| 265 | return ".proj"; |
| 266 | default: |
| 267 | return ".vcxproj"; |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | static std::string computeProjectFileExtension(cmGeneratorTarget const* t) |
| 272 | { |
no test coverage detected
searching dependent graphs…