Files
ChestPreview/.vscode/launch.json
2026-03-15 00:18:05 +01:00

24 lines
766 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Vintage Story Client",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build mod",
"program": "${env:VINTAGE_STORY}/Vintagestory.dll",
"args": [
"--tracelog",
"--dataPath",
"${env:VINTAGE_STORY_DATA}",
"--addModPath",
"${workspaceFolder}/ChestPreview/ChestPreview/bin/Debug/Mods",
"--addOrigin",
"${workspaceFolder}/ChestPreview/ChestPreview/assets"
],
"cwd": "${env:VINTAGE_STORY}",
"console": "integratedTerminal",
"stopAtEntry": false
}
]
}