Created
November 13, 2019 11:30
-
-
Save sergiorgiraldo/0a4fe89e2bb2e7160b21e7bc2f2f9576 to your computer and use it in GitHub Desktop.
tasks.json to build dotnet applications
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
{ | |
//for this to work, you have to define a workspoace in vscode WITH SAME NAME AS YIOUR CSPROJ FILE | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "build", | |
"command": "dotnet", | |
"type": "process", | |
"args": [ | |
"build", | |
"${workspaceFolder}/${workspaceFolderBasename}.csproj", | |
"/property:GenerateFullPaths=true", | |
"/consoleloggerparameters:NoSummary" | |
], | |
"problemMatcher": "$msCompile" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment