Mendix ModelSDK

0
::model SDK issue after Mendix 11 update [The problem I am experiencing] When updating to the latest version of Mendix 11, I am having issues with the Model SDK version not supporting the metamodel version '11.0.0'. I received the following error message: `Error: The Model SDK you are using does not support opening a working copy with metamodel version '11.0.0'. Please update to the latest Model SDK.` [Expected help] I would appreciate any suggestions on how to resolve this issue and update the Model SDK to the latest version.
asked
1 answers
1

It looks like a version is already available: Model SDK Release notes

 

I'm not entirely sure if it works the same in Mendix 11, but you could try the following:

 

In package.json in your project directory, add this:

"mendixmodelsdk": "^4.98.0"

 

Alternatively, open a command prompt in your project folder, and run:

 

npm install mendixmodelsdk@latest --save

 

answered