mirror of
https://github.com/osukey/osukey.git
synced 2025-04-29 10:47:22 +09:00
Generate portable PDBs + add rebuild task.
This commit is contained in:
parent
0b67cf0e91
commit
c108a7b48e
18
.vscode/tasks.json
vendored
18
.vscode/tasks.json
vendored
@ -11,7 +11,23 @@
|
|||||||
"command": "msbuild",
|
"command": "msbuild",
|
||||||
"args": [
|
"args": [
|
||||||
// Ask msbuild to generate full paths for file names.
|
// 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
|
// Use the standard MS compiler pattern to detect errors, warnings and infos
|
||||||
"problemMatcher": "$msCompile",
|
"problemMatcher": "$msCompile",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user