Skip to content

Instantly share code, notes, and snippets.

@hgouveia
Created February 4, 2018 08:11
Show Gist options
  • Save hgouveia/134f4007e9ed65aafad76e5808f7f543 to your computer and use it in GitHub Desktop.
Save hgouveia/134f4007e9ed65aafad76e5808f7f543 to your computer and use it in GitHub Desktop.
Vscode task configuration for Godot 3.0 C#, for running and compiling
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "run",
"type": "shell",
"command": "D:/Godot/bin/Godot.exe --path \"${workspaceRoot}\""
},
{
"label": "build",
"windows": {
"command": "C:\\Program Files (x86)\\MSBuild\\14.0\\Bin\\MSBuild.exe"
},
"args": [
"/p:Configuration=Tools;Platform=Any CPU;GenerateFullPaths=true",
"/t:build"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment