Using SDK to find the modeler version

1
Is it possible through the SDK to find out what version of the desktop modeler was used to create the project. If I create a project using the model SDK, it looks like it uses the latest version of the modeler to create the project. Given a project id, using the SDK, I want to find out what version of the modeler was used to create it. Is it possible?
asked
1 answers
4

If I'm correct, the version is stored in the metaModelVersion in IWorkingCopyMetaData:
https://apidocs.mendix.com/modelsdk/latest/interfaces/iworkingcopymetadata.html#metamodelversion

And you are right, when you create a project through the SDK, the latest modeler version is used as version, see also this forum post: 
https://forum.mendix.com/link/questions/88529

answered