aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/.vscode/tasks.json
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-01-23 01:16:24 +0800
committercrupest <crupest@outlook.com>2021-01-23 01:17:02 +0800
commit0691b654e114274b73e5a0aa1c1b0842445e57ef (patch)
treea8f7688dec938e041f151a2db844fc6a50cf9087 /BackEnd/.vscode/tasks.json
parentfca1b6bf2ef01990915a892c2ad4dc27aca4f211 (diff)
downloadtimeline-0691b654e114274b73e5a0aa1c1b0842445e57ef.tar.gz
timeline-0691b654e114274b73e5a0aa1c1b0842445e57ef.tar.bz2
timeline-0691b654e114274b73e5a0aa1c1b0842445e57ef.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.json42
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