Gets all projects including this project, it's references and their references (any deep level of references). The collection of projects.
()
| 398 | /// </summary> |
| 399 | /// <returns>The collection of projects.</returns> |
| 400 | public HashSet<ProjectInfo> GetAllProjects() |
| 401 | { |
| 402 | var result = new HashSet<ProjectInfo>(); |
| 403 | GetAllProjects(result); |
| 404 | return result; |
| 405 | } |
| 406 | |
| 407 | private void GetAllProjects(HashSet<ProjectInfo> result) |
| 408 | { |
no test coverage detected