rimworld-mod-template/.vscode/launch.json

20 lines
703 B
JSON
Raw Normal View History

2020-06-20 10:23:14 +02: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": [
{
"name": "Rimworld Mod Project",
"type": "clr",
"request": "launch",
"preLaunchTask": "build dll",
"args": [],
2020-06-20 16:22:49 +02:00
// C:/Program Files (x86)/Steam/steamapps/common/RimWorld/RimWorldWin64.exe
"program": "../../RimWorldWin64.exe",
2020-06-20 10:23:14 +02:00
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopAtEntry": true
},
]
}