mirror of https://github.com/buggins/dlangide.git
The root ProjectFolder now has the name of the folder
It used to have the full file path of the dub.json file.
This commit is contained in:
parent
c1f4a3b1c2
commit
39ac4deb5d
|
@ -422,7 +422,7 @@ class Project : WorkspaceItem {
|
||||||
includePath ~= obj.str;
|
includePath ~= obj.str;
|
||||||
}
|
}
|
||||||
|
|
||||||
_items = new ProjectFolder(fname);
|
_items = new ProjectFolder(fname.dirName);
|
||||||
_dependencyVersion = dependencyVersion;
|
_dependencyVersion = dependencyVersion;
|
||||||
_isDependency = _dependencyVersion.length > 0;
|
_isDependency = _dependencyVersion.length > 0;
|
||||||
_projectFile = new SettingsFile(fname);
|
_projectFile = new SettingsFile(fname);
|
||||||
|
@ -607,8 +607,8 @@ class Project : WorkspaceItem {
|
||||||
return settings.runInExternalConsole;
|
return settings.runInExternalConsole;
|
||||||
}
|
}
|
||||||
|
|
||||||
ProjectFolder findItems(string[] srcPaths) {
|
private ProjectFolder findItems(string[] srcPaths) {
|
||||||
auto folder = new ProjectFolder(_filename);
|
auto folder = new ProjectFolder(_filename.dirName);
|
||||||
folder.project = this;
|
folder.project = this;
|
||||||
foreach(customPath; srcPaths) {
|
foreach(customPath; srcPaths) {
|
||||||
string path = relativeToAbsolutePath(customPath);
|
string path = relativeToAbsolutePath(customPath);
|
||||||
|
|
Loading…
Reference in New Issue