You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was testing the new project generator done with Electron and found a bug.
I followed the readme to install it, I built an updated version of commandLine project beforehand, then moving the binary to frontend/app folder.
Then in the PG, when generating/updating a project, it uses frontend/app/projectGenerator...which gave me error such as:
'projectGenerator' is not recognized as an internal or external command, operable program or batch file.
To fix this, I had to change in frontend/index.js (line 650):
Actually I just tried on OSX and it's all good: when compiling the commandLine project, it provides a projectGenerator binary, which then works correctly with the electron PG.
Then the problem is with Visual Studio for the commandLine project: the name of the executable should be "projectGenerator" and no "commandLine".
yes, the bin name should stay as projectGenerator but for visual studio there's still no way to set the bin name when we generate the project file automatically
Hi,
I was testing the new project generator done with Electron and found a bug.
I followed the readme to install it, I built an updated version of commandLine project beforehand, then moving the binary to frontend/app folder.
Then in the PG, when generating/updating a project, it uses frontend/app/projectGenerator...which gave me error such as:
To fix this, I had to change in frontend/index.js (line 650):
to this:
So that it uses commandLine instead of projectGenerator. Then it was generating/updating projects correctly.
I am on Windows 7 also, not sure if it matters.
The text was updated successfully, but these errors were encountered: