Skip to content

Commit

Permalink
Add build task for VS Code
Browse files Browse the repository at this point in the history
  • Loading branch information
jozefizso committed Feb 2, 2023
1 parent cfbf87e commit 8694c2b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/vbamc/vbamc.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"presentation": {
"reveal": "silent",
}
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/src/vbamc/vbamc.csproj"
],
"problemMatcher": "$msCompile"
}
]
}

0 comments on commit 8694c2b

Please sign in to comment.