DonJayamanne / javaVSCode

Extension for java development on VSCode (deprecated)
https://marketplace.visualstudio.com/items?itemName=donjayamanne.javaDebugger
MIT License
43 stars 29 forks source link

need config to only 'run' the java file #70

Closed GorvGoyl closed 7 years ago

GorvGoyl commented 7 years ago

Hi, I can successfully debug java files but don't know the config to just run. Can I have launch.json/tasks.json config to run java file?

faustinoaq commented 7 years ago

Yeah, you don't even need this extension just using tasks.json

In addition you can set in your launch.json:

{
    ...
    "stopOnEntry": false,
    ...
}

and use the debugger to run java code without debugging :stuck_out_tongue_winking_eye:

GorvGoyl commented 7 years ago

got it.