Last active
January 31, 2021 13:14
-
-
Save CalebSerafin/d91c15bfbbf913d13c56e9494abc05ab to your computer and use it in GitHub Desktop.
Example for using Visual Studio Code's Save and Run extension with Antistasi Dev Deploy. NB: Recomend using configurator first to filter map templates.
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
{ | |
"saveAndRun": { | |
"commands": [ | |
{ | |
"match": ".sqf", | |
"cmd": "Tools\\\"Antistasi Dev Deploy.exe\"", | |
"useShortcut": false, | |
"silent": true | |
}, | |
{ | |
"match": ".sqm", | |
"cmd": "Tools\\\"Antistasi Dev Deploy.exe\"", | |
"useShortcut": false, | |
"silent": true | |
}, | |
{ | |
"match": ".ext", | |
"cmd": "Tools\\\"Antistasi Dev Deploy.exe\"", | |
"useShortcut": false, | |
"silent": true | |
}, | |
{ | |
"match": ".hpp", | |
"cmd": "Tools\\\"Antistasi Dev Deploy.exe\"", | |
"useShortcut": false, | |
"silent": true | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment