public ProjectNode[] GetAllProjects() { return(ResolveConfig.GetProjects().Select(p => new ProjectBuilder(p, ProjectCache, runtimeProfile, ResolveConfig).BuildUp()).ToArray()); }
public List <ProjectCopyLocal> Dectect() { return(resolveConfig.GetProjects().Where(p => !IsDeployNode(p)) .Select(p => new ProjectCopyLocal(p, GetCopyLocals(resolveConfig, p))) .Where(cl => cl.CopyLocals.Length > 0).ToList()); }