mcswebapi/.vscode/launch.json

22 lines
643 B
JSON
Raw Normal View History

2022-05-16 06:33:14 +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": "Launch App",
"request": "launch",
"mainClass": "net.reslate.mcswebapi.App",
2022-05-16 06:33:14 +00:00
"projectName": "mcswebapi"
},
{
"type": "java",
"name": "Attach",
"request": "attach",
"hostName": "localhost",
"port": "25577"
}
]
}