MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / GetAllProjects

Method GetAllProjects

Source/Tools/Flax.Build/ProjectInfo.cs:400–405  ·  view source on GitHub ↗

Gets all projects including this project, it's references and their references (any deep level of references). The collection of projects.

()

Source from the content-addressed store, hash-verified

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 {

Callers 4

GenerateSolutionMethod · 0.45
GenerateProjectMethod · 0.45
GenerateRulesAssemblyMethod · 0.45

Calls 2

GetAllProjectsFunction · 0.85
AddMethod · 0.45

Tested by

no test coverage detected