Skip to content

Instantly share code, notes, and snippets.

@exyi
Created August 2, 2017 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save exyi/3055cd3cec7d246475d660d1ec82a7fd to your computer and use it in GitHub Desktop.
Save exyi/3055cd3cec7d246475d660d1ec82a7fd to your computer and use it in GitHub Desktop.
dotvvm/src/.vscode/tasks.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "dotnet",
"isShellCommand": true,
"args": [ ],
"tasks": [
{
"taskName": "build",
"args": [ "DotVVM.Samples.BasicSamples.AspNetCore/" ],
"isBuildCommand": true,
"showOutput": "silent",
"problemMatcher": "$msCompile"
},
{
"taskName": "build-cli",
"command": "build",
"args": [ "DotVVM.CommandLine" ],
"isBuildCommand": true,
"showOutput": "always",
"problemMatcher": "$msCompile"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment