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

34 lines
1.1 KiB
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-09-11 13:58:46 +02:00
"program": "../../RimWorldWin64.exe",
2020-06-20 10:23:14 +02:00
"cwd": "${workspaceFolder}",
"console": "internalConsole",
2020-07-27 22:00:37 +02:00
"internalConsoleOptions":"neverOpen",
2020-06-20 10:23:14 +02:00
"stopAtEntry": true
},
2020-09-11 13:58:46 +02:00
{ // ignore
"name": ".NET Framework Attach",
"type": "clr",
"request": "attach",
"processId": "${command:pickProcess}",
"symbolOptions": {
"searchPaths": [
".vscode/obj/Debug/*"
],
"searchMicrosoftSymbolServer": false,
"searchNuGetOrgSymbolServer": false
}
}
2020-06-20 10:23:14 +02:00
]
}