-
-
Save dpraimeyuu/0c9db8f0ae6b5afd7a3c914906fdb5b7 to your computer and use it in GitHub Desktop.
VSCode task with msbuild
This file contains 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": "cmd", | |
"args": [ | |
"/c" | |
], | |
"showOutput": "always", | |
"echoCommand": true, | |
"tasks": [ | |
{ | |
"isBuildCommand": true, | |
"taskName": "MSBuild.exe", | |
"args": [ | |
"${workspaceRoot}/src/Example.sln", | |
"/t:Rebuild", | |
"/p:Configuration=Debug;Platform=Any CPU;GenerateFullPaths=true", | |
"/m" | |
], | |
"showOutput": "always", | |
"problemMatcher": "$msCompile" | |
}, | |
{ | |
"taskName": "nunit3-console.exe", | |
"args": [ | |
"${workspaceRoot}/src/Example.sln" | |
], | |
"showOutput": "always" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment