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:
Zevenberge 2017-12-02 21:50:21 +01:00
parent c1f4a3b1c2
commit 39ac4deb5d
1 changed files with 3 additions and 3 deletions

View File

@ -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);