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
there no build and run feature in a click like netbeans.
Add a command to rebuild the project the current active file is part of.
"I really like editing in VS Code but find it not as powerful as tools like Eclipse for build and debug. "
The burden I got is there was not shortcut for compile java code, it would be awesome if we had it."
For a maven project I find I have to routinely run "mvn clean compile" after making code changes before it will build.
Actually, we have build action which is called Force Java Compilation, it looks like we need to do some enhancement to expose it to more places. Some ideas:
Expose build action to more places (for example, can be invoked in Java Project explorer)
Allow to build some of the projects instead of the entire workspace
Considering renaming it?? - Because in other IDEs they all call it build, here we call it compilation
Ask VS Code to have a dedicate tool bar menu called build or sth...
The text was updated successfully, but these errors were encountered:
In Eclipse, the action that generate the jar artifact is called export.
And the build action will generate all the compiled classes in the output path:
eclipse-build.mp4
IDEA
The term Compile and Build can be found both in IDEA. While, Compile is used to compile a single source file, Build is used for an entire module/project
intellij-build.mp4
Looks like the term build is commonly used in popular IDEs and does very similar things with our Force Java compilation command. I think it makes sense to make this command's name include the keyword build, so that users can find it more easily.
Below are some feedbacks from user surveys:
Actually, we have build action which is called
Force Java Compilation
, it looks like we need to do some enhancement to expose it to more places. Some ideas:build
, here we call itcompilation
build
or sth...The text was updated successfully, but these errors were encountered: