Skip to content

Instantly share code, notes, and snippets.

@dragunoff
Created June 6, 2020 20:45
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dragunoff/0585e4a397fc30a508dbab9873a13caa to your computer and use it in GitHub Desktop.
Save dragunoff/0585e4a397fc30a508dbab9873a13caa to your computer and use it in GitHub Desktop.
OpenRA launch configurations for VSCode
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch (TD)",
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/OpenRA.Game.exe",
"cwd": "${workspaceRoot}",
"args": ["Game.Mod=cnc"]
},
{
"name": "Launch (RA)",
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/OpenRA.Game.exe",
"cwd": "${workspaceRoot}",
"args": ["Game.Mod=ra"]
},
{
"name": "Launch (D2k)",
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/OpenRA.Game.exe",
"cwd": "${workspaceRoot}",
"args": ["Game.Mod=d2k"]
},
{
"name": "Launch (TS)",
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/OpenRA.Game.exe",
"cwd": "${workspaceRoot}",
"args": ["Game.Mod=ts"]
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment