Files
javacodingdojo/.vscode/launch.json
Christoph Kroczek 9863a8358b initial
2019-04-19 12:50:01 +02:00

21 lines
665 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug (Launch) - Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "Debug (Launch)-Main<001_sequential_migration>",
"request": "launch",
"mainClass": "Main",
"projectName": "001_sequential_migration"
}
]
}