Replies: 2 comments
-
I don't think so, projects are only hierarchy components, really just an attribute of a task, not things in and of themselves that can be depended on. You would have to make a task that had dependencies on all tasks in a project instead, and then depend on that one. It's an interesting idea though. |
Beta Was this translation helpful? Give feedback.
-
You can't do it directly, but you can make a task depending on all the task of a projects in one go by playing a bit with the dom. Example: here is a starting workspace with 3 tasks in a project, and our "target" task you can get the ids of a list of task using
Which successfully makes task The main con of this method is that if your project evolves, its not going to be updated automatically. Other solutions would be to have a "end of project" task in your project, and having this task being the dependency of the task requiring the previous project. That way, only the "end of project" task would need to be updated if your project evolves. |
Beta Was this translation helpful? Give feedback.
-
Hi,
i just asked myself, how i could tell TW that one task depends on another project.
(As in:
task 12 mod depends:my_project
)Is that somehow possible?
I couldn't find infos on this.
Thanks in advance! :)
Beta Was this translation helpful? Give feedback.
All reactions