Gets all projects including this project, it's references and their references (any deep level of references). The collection of projects.
()
| 203 | /// </summary> |
| 204 | /// <returns>The collection of projects.</returns> |
| 205 | public HashSet<ProjectInfo> GetAllProjects() |
| 206 | { |
| 207 | var result = new HashSet<ProjectInfo>(); |
| 208 | GetAllProjects(result); |
| 209 | return result; |
| 210 | } |
| 211 | |
| 212 | private void GetAllProjects(HashSet<ProjectInfo> result) |
| 213 | { |
no test coverage detected