Add VSCode debug configuration for Java (#2916)
This commit is contained in:
parent
dc6088bf21
commit
647ea8a945
|
|
@ -1,7 +1,16 @@
|
||||||
{
|
{
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "java",
|
||||||
|
"name": "Java - Debug (Launch)",
|
||||||
|
"request": "launch",
|
||||||
|
"cwd": "${workspaceFolder}/clients/java/",
|
||||||
|
"console": "externalTerminal",
|
||||||
|
"stopOnEntry": false,
|
||||||
|
"mainClass": "com.microsoft.aspnet.signalr.Chat",
|
||||||
|
"args": ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"request": "attach",
|
"request": "attach",
|
||||||
|
|
|
||||||
|
|
@ -7,5 +7,7 @@ bin/
|
||||||
out/
|
out/
|
||||||
*.class
|
*.class
|
||||||
*.jar
|
*.jar
|
||||||
|
.project
|
||||||
|
.classpath
|
||||||
# We need the gradle-wrapper.jar file so that others can use the gradle wrapper
|
# We need the gradle-wrapper.jar file so that others can use the gradle wrapper
|
||||||
!gradle/wrapper/gradle-wrapper.jar
|
!gradle/wrapper/gradle-wrapper.jar
|
||||||
Loading…
Reference in New Issue