| 265 | } |
| 266 | |
| 267 | bool cmVSSetupAPIHelper::GetVSInstanceVersion(std::string& vsInstanceVersion) |
| 268 | { |
| 269 | vsInstanceVersion.clear(); |
| 270 | bool isInstalled = this->EnumerateAndChooseVSInstance(); |
| 271 | |
| 272 | if (isInstalled) { |
| 273 | vsInstanceVersion = chosenInstanceInfo.Version; |
| 274 | } |
| 275 | |
| 276 | return isInstalled; |
| 277 | } |
| 278 | |
| 279 | bool cmVSSetupAPIHelper::GetVCToolsetVersion(std::string& vsToolsetVersion) |
| 280 | { |
nothing calls this directly
no test coverage detected