コード例 #1
0
 public IEnumerable <Project> GetAllProjects()
 {
     foreach (IProject project in solution.GetMSBuildProjects())
     {
         yield return(CreateProject(project));
     }
 }
コード例 #2
0
 IEnumerable <IProject> GetOpenProjects()
 {
     return(Solution.GetMSBuildProjects());
 }