Closed
Description
I am trying to use visual studio code for java to train beginners.
In java project, a binary directory is usually located in project folder.
It is useful for beginners to see binary folder to realize what is "compile".
So, can you change the "no build tool" template, or make it configurable?
I tried to change ".classpath" file and it worked.
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="_/src"/>
<classpathentry kind="output" path="_/bin"/>
</classpath>