Dependency
This extension enables the current project to incorporate one or multiple dependent projects. These dependent projects will be built prior to the initiation of this project's build process, with their output assemblies seamlessly integrated as references into this project.
It's important to note that dependent projects may have their own dependencies. Pay attention to avoid potential deadloop scenarios (e.g. A requires B and B requires A), which could result in a application crash.
Subscribed hooks
Task creation
This extension builds dependent projects and adds them as additional references in task creation hook.
Project config
Example json config in project file:
{ "deps": ["MyProject.fcpj"] }