| 761 | } |
| 762 | |
| 763 | bool cmGlobalVisualStudioGenerator::Open(std::string const& bindir, |
| 764 | std::string const& projectName, |
| 765 | bool dryRun) |
| 766 | { |
| 767 | std::string sln = this->GetSLNFile(bindir, projectName); |
| 768 | |
| 769 | if (dryRun) { |
| 770 | return cmSystemTools::FileExists(sln, true); |
| 771 | } |
| 772 | |
| 773 | sln = cmSystemTools::ConvertToOutputPath(sln); |
| 774 | |
| 775 | return std::async(std::launch::async, OpenSolution, sln).get(); |
| 776 | } |
| 777 | |
| 778 | cm::string_view cmGlobalVisualStudioGenerator::ExternalProjectTypeId( |
| 779 | std::string const& path) |
nothing calls this directly
no test coverage detected