{ "version": "0.2.0", "configurations": [ { "name": "Launch (Example)", "type": "coreclr", "request": "launch", "program": "${workspaceRoot}/engine/bin/OpenRA.dll", "args": [ "Game.Mod=example", "Engine.EngineDir=${workspaceRoot}/engine", "Engine.ModSearchPaths=${workspaceRoot}/mods, ${workspaceRoot}/engine/mods", "Debug.DisplayDeveloperSettings=true", ], "preLaunchTask": "build", }, { "name": "Launch Utility", "type": "coreclr", "request": "launch", "program": "${workspaceRoot}/engine/bin/OpenRA.Utility.dll", "args": ["example", "--check-yaml"], "env": { "ENGINE_DIR": "${workspaceRoot}/engine", "MOD_SEARCH_PATHS": "${workspaceRoot}/mods, ${workspaceRoot}/engine/mods" }, "preLaunchTask": "build", }, ], }