In tasks.json you can find:
{
"version": "0.1.0",
"command": "msbuild",
"args": [
"/property:GenerateFullPaths=true"
],
"taskSelector": "/t:",
"showOutput": "silent",
"tasks": [
{
"taskName": "build",
"showOutput": "silent",
"problemMatcher": "$msCompile"
}
]
}
which is great for creating C # projects. I still haven't found a way to run the file exe. I think this has something to do with the Test team ...
kDar source
share