Get Defold version a project uses

I am writing a small Python script that would benefit from knowing what Defold version a project uses.
I looked through all the files in the project folder and can’t seem to find a version info.
Might I have missed it or is it not included anywhere?

There is no such information. The closest you get is the build_input_data.json which is written when you bundle your project.

1 Like

Thank you @britzl ! I might be able to use this as a work-around.:face_with_monocle:

You can also call sys.get_engine_info() and write the result to a file in your project.

1 Like

Yeah - this crossed my mind too just now. Cheers again!
I would have liked to get at that info for a project that hasn’t been built/bundled first. But this would rarely be the case anyway.