Skip to content

Commit

Permalink
Update VSCode tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Craver committed Jul 4, 2021
1 parent faf494f commit 4ae9740
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"version": "2.0.0",
"command": "dotnet",
"isShellCommand": true,
"args": [],
"tasks": [
{
"taskName": "build",
"args": [],
"isBuildCommand": true,
"showOutput": "always",
"problemMatcher": "$msCompile"
"label": "build",
"type": "shell",
"command": "dotnet",
"args": [
"build",
"Build.csproj"
],
"problemMatcher": "$msCompile",
"group": "build"
}
]
}

0 comments on commit 4ae9740

Please sign in to comment.