Created
June 6, 2020 20:45
-
-
Save dragunoff/0585e4a397fc30a508dbab9873a13caa to your computer and use it in GitHub Desktop.
OpenRA launch configurations for VSCode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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