Add build task

main
copygirl 5 years ago
parent eed70795dd
commit 4678938f9d
  1. 3
      .vscode/launch.json
  2. 16
      .vscode/tasks.json

@ -4,7 +4,8 @@
"name": "Play in Editor",
"type": "godot-mono",
"mode": "playInEditor",
"request": "launch"
"request": "launch",
"preLaunchTask": "build"
},{
"name": "Launch (Linux)",
"type": "godot-mono",

16
.vscode/tasks.json vendored

@ -0,0 +1,16 @@
{
"version": "2.0.0",
"tasks": [{
"group": "build",
"label": "build",
"type": "shell",
"command": "msbuild",
"args": [
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"/t:build",
],
"presentation": { "reveal": "silent" },
"problemMatcher": "$msCompile"
}]
}
Loading…
Cancel
Save