VS+Code launch profile improvements

This commit is contained in:
Luke 2021-11-24 21:32:22 +10:00
parent f48dda3ae3
commit c70a9bc88b
3 changed files with 54 additions and 17 deletions

17
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/TShock.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}