Generate portable PDBs + add rebuild task.

This commit is contained in:
smoogipooo 2017-04-22 16:59:15 +09:00
parent 0b67cf0e91
commit c108a7b48e
1 changed files with 17 additions and 1 deletions

18
.vscode/tasks.json vendored
View File

@ -11,7 +11,23 @@
"command": "msbuild",
"args": [
// Ask msbuild to generate full paths for file names.
"/property:GenerateFullPaths=true"
"/property:GenerateFullPaths=true",
"/property:DebugType=portable"
],
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile",
"isBuildCommand": true
},
{
"taskName": "rebuild",
"isShellCommand": true,
"showOutput": "silent",
"command": "msbuild",
"args": [
// Ask msbuild to generate full paths for file names.
"/property:GenerateFullPaths=true",
"/property:DebugType=portable",
"/target:Clean,Build"
],
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile",