Skip to content

Commit

Permalink
VSCode: Allow to build install package w/o manual tweaking of tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-yagodin committed Oct 12, 2020
1 parent 4c076e7 commit e463831
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "2.0.0",
"args": [
// active build configuration
"/p:Configuration=Debug",
//"/p:Configuration=Debug",
// ask msbuild to generate full paths for file names
"/p:GenerateFullPaths=true"
],
Expand Down Expand Up @@ -41,8 +41,8 @@
"problemMatcher": []
},
{
"label": "Make Install Package",
"args": ["/t:Build", "/p:EnableTests=true", "/p:EnableInstallPackage=true", "/p:EnableLocalDeploy=false"],
"label": "Make Install Package (Release)",
"args": ["/t:Build", "/p:Configuration=Release", "/p:EnableTests=true", "/p:EnableInstallPackage=true", "/p:EnableLocalDeploy=false"],
// use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile"
},
Expand Down

0 comments on commit e463831

Please sign in to comment.