You can find the tasks.json file below to build these solutions separately.
You can run the task by
- pressing CTRL+SHIFT+P
- selecting Run Task
- choosing the appropriate option
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.1.0", | |
"command": "c:\\Program Files (x86)\\MSBuild\\14.0\\Bin\\MSBuild.exe", | |
"args": [ | |
"/property:GenerateFullPaths=true" | |
], | |
"taskSelector": "/t:", | |
"showOutput": "silent", | |
"tasks": [ | |
{ | |
"args": [ | |
"A.sln", | |
"/t:Rebuild", | |
"/p:Configuration=Config1" | |
], | |
"taskName": "Build SolutionA", | |
"suppressTaskName": true, | |
"showOutput": "silent", | |
"problemMatcher": "$msCompile" | |
}, | |
{ | |
"args": [ | |
"B.sln", | |
"/t:Rebuild", | |
"/p:Configuration=Config1" | |
], | |
"taskName": "Build SolutionB", | |
"suppressTaskName": true, | |
"showOutput": "silent", | |
"problemMatcher": "$msCompile" | |
} | |
] | |
} |
No comments:
Post a Comment