RECORDANDRONCO/.vscode/launch.json
2022-08-10 00:00:00 +02:00

22 lines
644 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Mod SDK Example",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/engine/bin/OpenRA.dll",
"windows": {
"program": "${workspaceRoot}/engine/bin/OpenRA.exe",
},
"args": [
"Engine.EngineDir=${workspaceRoot}/engine",
"Engine.ModSearchPaths=${workspaceRoot}/mods",
"Game.Mod=example",
"Debug.DisplayDeveloperSettings=true",
]
},
]
}