microsoft/healthcare-shared-components

Public

mirrored fromhttps://github.com/microsoft/healthcare-shared-componentsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dab265c2967d8f7199ea3066f882087786a2886b

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.vscode/tasks.json

28lines · modecode

1{
2 // See https://go.microsoft.com/fwlink/?LinkId=733558
3 // for the documentation about the tasks.json format
4 "version": "2.0.0",
5 "tasks": [
6 {
7 "label": "build",
8 "command": "dotnet",
9 "type": "shell",
10 "args": [
11 "build",
12 // Ask dotnet build to generate full paths for file names.
13 "/property:GenerateFullPaths=true",
14 // Do not generate summary otherwise it leads to duplicate errors in Problems panel
15 "/consoleloggerparameters:NoSummary"
16 ],
17 "group": "build",
18 "presentation": {
19 "reveal": "silent"
20 },
21 "problemMatcher": "$msCompile"
22 }
23 ]
24}
25
26
27
28
29