diff options
author | crupest <crupest@outlook.com> | 2021-01-23 01:16:24 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-01-23 01:17:02 +0800 |
commit | d2696cab01bea5fba0c00b907343e8052adacd74 (patch) | |
tree | 2d48609fb2c72ed5e5c61dfab1b04815d1f14c2f /BackEnd/.vscode/tasks.json | |
parent | 2bf83a531a15e7895854f160b727d2dd150290d0 (diff) | |
download | timeline-d2696cab01bea5fba0c00b907343e8052adacd74.tar.gz timeline-d2696cab01bea5fba0c00b907343e8052adacd74.tar.bz2 timeline-d2696cab01bea5fba0c00b907343e8052adacd74.zip |
feat: Now configuration uses environment variables starts with 'Timeline_'. And remove work dir config in launch profiles.
Diffstat (limited to 'BackEnd/.vscode/tasks.json')
-rw-r--r-- | BackEnd/.vscode/tasks.json | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/BackEnd/.vscode/tasks.json b/BackEnd/.vscode/tasks.json new file mode 100644 index 00000000..a60ac3a7 --- /dev/null +++ b/BackEnd/.vscode/tasks.json @@ -0,0 +1,42 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/Timeline/Timeline.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/Timeline/Timeline.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "${workspaceFolder}/Timeline/Timeline.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + } + ] +}
\ No newline at end of file |