forked from Aurorastation/Aurora.3
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlaunch.json
25 lines (25 loc) · 796 Bytes
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
// 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": [
{ // Builds with CBT and launches DreamSeeker.
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker",
"preLaunchTask": "Build All",
"postDebugTask": "dreamchecker",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{ // Builds with CBT and starts the server with DreamDaemon.
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon",
"preLaunchTask": "Build All",
"postDebugTask": "dreamchecker",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
}
]
}