mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 14:24:10 +02:00
Fixed dep-of-dep checks
This commit is contained in:
parent
962ebba6e9
commit
0a7e0e01e6
3 changed files with 83 additions and 81 deletions
|
@ -1242,8 +1242,13 @@ namespace IDE
|
|||
if (depProject == null)
|
||||
return;
|
||||
|
||||
List<Project> depProjectList = scope .();
|
||||
gApp.GetDependentProjectList(depProject, depProjectList);
|
||||
|
||||
for (let checkProject in gApp.mWorkspace.mProjects)
|
||||
{
|
||||
if (checkProject.mGeneralOptions.mTargetType == .BeefLib)
|
||||
continue;
|
||||
if (checkProject.HasDependency(depProject.mProjectName))
|
||||
{
|
||||
List<String> targetPaths = scope .();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue