JavaECS/.vscode/launch.json
Brychan Dempsey d66c23fcb3 Restructured the project for a release
Moved to javaecs, compiled via maven
Added changes to readme
2021-06-07 18:00:39 +12:00

21 lines
650 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": "Launch Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "Launch App",
"request": "launch",
"mainClass": "nz.ac.massey.programming_project_159333_s1_2021.App",
"projectName": "javaecs"
}
]
}