Getting value out of included FB Project

Hi,

imagine the following scenario.
We have one FB Project which calls a second one using the “Include Project” action.
Is there a builtin way to get variable values out of the included Project into the caller similar to how it works when executing targets within the same Project?

Regards
Christoph

If you check the “Share host project variables namespace” option then you can reference variables from the parent project in the child project.

Another option is to write the data to a file you can read in the parent project.

I wanted to avoid writing a file but I didn’t realise it was that easy.
Thanks.