Update tasks.json to remove warnings

This commit is contained in:
smoogipoo 2017-12-11 16:31:17 +09:00
parent 8769f93929
commit a8c91a89b5

77
.vscode/tasks.json vendored
View File

@ -2,63 +2,70 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558 // See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format // for the documentation about the tasks.json format
"version": "2.0.0", "version": "2.0.0",
"command": "msbuild",
"type": "shell",
"suppressTaskName": true,
"args": [
"/property:GenerateFullPaths=true",
"/property:DebugType=portable",
"/verbosity:minimal",
"/m" //parallel compiling support.
],
"tasks": [{ "tasks": [{
"taskName": "Build (Debug)", "label": "Build (Debug)",
"type": "shell",
"command": "msbuild",
"args": [
"/p:GenerateFullPaths=true",
"/p:DebugType=portable",
"/m",
"/v:m"
],
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
}, },
"problemMatcher": [ "problemMatcher": "$msCompile"
"$msCompile"
]
}, },
{ {
"taskName": "Build (Release)", "label": "Build (Release)",
"type": "shell",
"command": "msbuild",
"args": [
"/p:Configuration=Release",
"/p:DebugType=portable",
"/p:GenerateFullPaths=true",
"/m",
"/v:m"
],
"group": "build", "group": "build",
"args": [ "problemMatcher": "$msCompile"
"/property:Configuration=Release"
],
"problemMatcher": [
"$msCompile"
]
}, },
{ {
"taskName": "Clean (Debug)", "label": "Clean (Debug)",
"type": "shell",
"command": "msbuild",
"args": [ "args": [
"/target:Clean" "/p:DebugType=portable",
"/p:GenerateFullPaths=true",
"/m",
"/t:Clean",
"/v:m"
], ],
"problemMatcher": [ "problemMatcher": "$msCompile"
"$msCompile"
]
}, },
{ {
"taskName": "Clean (Release)", "label": "Clean (Release)",
"type": "shell",
"command": "msbuild",
"args": [ "args": [
"/target:Clean", "/p:Configuration=Release",
"/property:Configuration=Release" "/p:GenerateFullPaths=true",
"/p:DebugType=portable",
"/m",
"/t:Clean",
"/v:m"
], ],
"problemMatcher": [ "problemMatcher": "$msCompile"
"$msCompile"
]
}, },
{ {
"taskName": "Clean All", "label": "Clean All",
"dependsOn": [ "dependsOn": [
"Clean (Debug)", "Clean (Debug)",
"Clean (Release)" "Clean (Release)"
], ],
"problemMatcher": [ "problemMatcher": "$msCompile"
"$msCompile"
]
} }
] ]
} }