This commit is contained in:
Vadim Lopatin 2017-08-29 10:39:43 +03:00
parent 1fa7a06d9e
commit 4dc88393de
1 changed files with 5 additions and 0 deletions

View File

@ -1416,6 +1416,11 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
const auto msg = UIString.fromId("MSG_TRY_OPEN_PROJECT"c).value;
_logPanel.logLine(msg ~ toUTF32(" " ~ filename));
Project project = new Project(currentWorkspace, filename);
if (!project.load()) {
window.showMessageBox(UIString.fromId("MSG_OPEN_PROJECT"c), UIString.fromId("ERROR_INVALID_WS_OR_PROJECT_FILE"c));
_logPanel.logLine("File is not recognized as DlangIDE project or workspace file");
return;
}
string defWsFile = project.defWorkspaceFile;
if (currentWorkspace) {
Project existing = currentWorkspace.findProject(project.filename);