Project wizard does not work in Goland
Answered
Please sign in to leave a comment.
Hi,
It is impossible to help you without any details.
Please share your implementation and steps to reproduce the issue.
I want to add an entry but it doesn't work in goland.
Project address https://github.com/licheng1013/demo
Hi,
You have to implement
com.goide.wizard.GoProjectGenerator
and register it indirectoryProjectGenerator
EP.Example: https://github.com/JetBrains/tinygo-plugin/blob/354288fab5528622bd535be81671b9eaef664a47/src/main/kotlin/org/jetbrains/tinygoplugin/project/wizard/TinyGoProjectGenerator.kt
Registration in plugin.xml: https://github.com/JetBrains/tinygo-plugin/blob/55dcd939d72d2a8023a48511ed0d9a46a134dc06/src/main/resources/META-INF/plugin.xml#L19
thank you very much