Files
GaslightArrin/.vscode/tasks.json
T
2023-04-27 11:30:15 +02:00

33 lines
908 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build debug",
"command": "msbuild",
"type": "shell",
"args": [
"${workspaceFolder}/GaslightArrin.sln",
"/t:GaslightArrin",
"/p:Configuration=Debug",
"/p:Platform=\"Any CPU\""
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build release",
"command": "msbuild",
"type": "shell",
"args": [
"${workspaceFolder}/GaslightArrin.sln",
"/t:GaslightArrin",
"/p:Configuration=Release",
"/p:Platform=\"Any CPU\""
],
"problemMatcher": "$msCompile"
}
]
}