Prog2UE/de.hhn.ai.prog2.blatt3.gui/.vscode/launch.json

21 lines
671 B
JSON
Raw Permalink Normal View History

2019-04-23 11:06:55 +00:00
{
// 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)-App<de.hhn.ai.prog2.blatt3.gui>",
"request": "launch",
"mainClass": "app.App",
"projectName": "de.hhn.ai.prog2.blatt3.gui"
}
]
}