Home > OS >  Is there a way to set up the build order in a JAVA project on VSCode?
Is there a way to set up the build order in a JAVA project on VSCode?

Time:01-31

Simple question here but could not found it anywhere else.

Eclipse has this feature in Preferences > General > Workspace > Build where you can set the projects build order. Is there any way to do it on VS Code?

Thanks in advance.

CodePudding user response:

No, there is no built-in feature in Visual Studio Code (VS Code) to set the build order of projects. However, you can manually manage the build order by opening multiple projects in separate VS Code instances or by creating task launchers that build each project in a specific order.

  • Related