|
| 1 | +{ |
| 2 | + "version": "2.0.0", |
| 3 | + "tasks": [ |
| 4 | + { |
| 5 | + "label": "clean (functions)", |
| 6 | + "command": "dotnet", |
| 7 | + "args": [ |
| 8 | + "clean", |
| 9 | + "/property:GenerateFullPaths=true", |
| 10 | + "/consoleloggerparameters:NoSummary" |
| 11 | + ], |
| 12 | + "type": "process", |
| 13 | + "problemMatcher": "$msCompile" |
| 14 | + }, |
| 15 | + { |
| 16 | + "label": "build (functions)", |
| 17 | + "command": "dotnet", |
| 18 | + "args": [ |
| 19 | + "build", |
| 20 | + "/property:GenerateFullPaths=true", |
| 21 | + "/consoleloggerparameters:NoSummary" |
| 22 | + ], |
| 23 | + "type": "process", |
| 24 | + "dependsOn": "clean (functions)", |
| 25 | + "group": { |
| 26 | + "kind": "build", |
| 27 | + "isDefault": true |
| 28 | + }, |
| 29 | + "problemMatcher": "$msCompile" |
| 30 | + }, |
| 31 | + { |
| 32 | + "label": "clean release (functions)", |
| 33 | + "command": "dotnet", |
| 34 | + "args": [ |
| 35 | + "clean", |
| 36 | + "--configuration", |
| 37 | + "Release", |
| 38 | + "/property:GenerateFullPaths=true", |
| 39 | + "/consoleloggerparameters:NoSummary" |
| 40 | + ], |
| 41 | + "type": "process", |
| 42 | + "problemMatcher": "$msCompile" |
| 43 | + }, |
| 44 | + { |
| 45 | + "label": "publish (functions)", |
| 46 | + "command": "dotnet", |
| 47 | + "args": [ |
| 48 | + "publish", |
| 49 | + "--configuration", |
| 50 | + "Release", |
| 51 | + "/property:GenerateFullPaths=true", |
| 52 | + "/consoleloggerparameters:NoSummary" |
| 53 | + ], |
| 54 | + "type": "process", |
| 55 | + "dependsOn": "clean release (functions)", |
| 56 | + "problemMatcher": "$msCompile" |
| 57 | + }, |
| 58 | + { |
| 59 | + "type": "func", |
| 60 | + "dependsOn": "build (functions)", |
| 61 | + "options": { |
| 62 | + "cwd": "${workspaceFolder}/bin/Debug/net6" |
| 63 | + }, |
| 64 | + "command": "host start --verbose", |
| 65 | + "isBackground": true, |
| 66 | + "problemMatcher": "$func-dotnet-watch" |
| 67 | + } |
| 68 | + ] |
| 69 | +} |
0 commit comments