How to fix error when creating extension project in WebIDE

  • 2019 年 10 月 4 日
  • 筆記

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

本文链接:https://jerry.blog.csdn.net/article/details/100880496

Created by Jerry Wang, last modified on Mar 08, 2015

Suppose you try to create a new extension project based on one existing project:

if you meet with this error message below: ( the next button is disabled ) Could not find the .project.json file in the selected folder

All you need to do is to create a .project.json file manually and paste the following source code:

{    "translation": {      "translationDomain": "",      "supportedLanguages": "en,fr,de",      "defaultLanguage": "en",      "defaultI18NPropertyFile": "i18n.properties",      "resourceModelName": "i18n"    }  }

After that the button will be available again: