示例#1
0
 public void Load()
 {
     this.Clear();
     for (int i = 0; i < this.WorkspaceFolders.Length; i++)
     {
         string filePath = System.IO.Path.Combine(this.WorkspaceFolders[i], "app.json");
         if (System.IO.File.Exists(filePath))
         {
             this.Add(new WorkspaceProject(ALProjectFile.Load(filePath), this.WorkspaceFolders[i]));
         }
     }
 }
 public WorkspaceProject(ALProjectFile alProjectFile, string projectPath)
 {
     this.ALProjectFile = alProjectFile;
     this.ProjectPath   = projectPath;
 }