Created
June 29, 2016 19:05
-
-
Save bcavileer/1947b786746c668a948774431677d2a5 to your computer and use it in GitHub Desktop.
Visual Studio Code - C# dotnet tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "0.1.0", | |
| "command": "dotnet", | |
| "isShellCommand": true, | |
| "showOutput": "silent", | |
| "tasks": [ | |
| { | |
| "taskName": "restore", | |
| "suppressTaskName": true, | |
| "args" : ["restore"], | |
| "showOutput": "always", | |
| "problemMatcher": "$msCompile" | |
| }, | |
| { | |
| "taskName": "unit test", | |
| "suppressTaskName": true, | |
| "args" : ["test"], | |
| "isTestCommand": true, | |
| "showOutput": "always" | |
| }, | |
| { | |
| "taskName": "dotnet version", | |
| "suppressTaskName": true, | |
| "args" : ["--version"], | |
| "showOutput": "always" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment