Add VSCode debug configuration for Java (#2916)

This commit is contained in:
BrennanConroy 2018-09-06 08:54:37 -07:00 committed by GitHub
parent dc6088bf21
commit 647ea8a945
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

11
.vscode/launch.json vendored
View File

@ -1,7 +1,16 @@
{
"version": "0.2.0",
"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",
"request": "attach",

View File

@ -7,5 +7,7 @@ bin/
out/
*.class
*.jar
.project
.classpath
# We need the gradle-wrapper.jar file so that others can use the gradle wrapper
!gradle/wrapper/gradle-wrapper.jar