Gets all projects including this project, it's references and their references (any deep level of references). The result list of projects (this and all references).
| 141 | /// </summary> |
| 142 | /// <param name="result">The result list of projects (this and all references).</param> |
| 143 | void GetAllProjects(HashSet<ProjectInfo*>& result) |
| 144 | { |
| 145 | result.Add(this); |
| 146 | for (auto& reference : References) |
| 147 | if (reference.Project) |
| 148 | reference.Project->GetAllProjects(result); |
| 149 | } |
| 150 | |
| 151 | /// <summary> |
| 152 | /// Loads the project from the specified file. |
no test coverage detected