Fix visual studio dotnet core build task

This commit is contained in:
E.G. Hornbostel 2019-07-02 17:15:53 -07:00
parent 42e9566b7b
commit 639cd234a3
1 changed files with 5 additions and 1 deletions

6
.vscode/tasks.json vendored
View File

@ -5,12 +5,16 @@
"tasks": [
{
"label": "build",
"command": "dotnet build",
"command": "dotnet",
"type": "shell",
"group": "build",
"presentation": {
"reveal": "silent"
},
"args": [
"build",
"/property:GenerateFullPaths=true"
],
"problemMatcher": "$msCompile"
}
]