aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/.vscode/tasks.json
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-01-23 01:38:09 +0800
committercrupest <crupest@outlook.com>2021-01-23 01:38:09 +0800
commit15ebe6a7197a3b7761ff153f70812d0366036cec (patch)
tree0c09034805e0feaf8b103183fda6f3c43398cc88 /BackEnd/.vscode/tasks.json
parent011761c5603e7275a20a2597f9f0b03c18c7d0fd (diff)
parentd2696cab01bea5fba0c00b907343e8052adacd74 (diff)
downloadtimeline-15ebe6a7197a3b7761ff153f70812d0366036cec.tar.gz
timeline-15ebe6a7197a3b7761ff153f70812d0366036cec.tar.bz2
timeline-15ebe6a7197a3b7761ff153f70812d0366036cec.zip
Merge branch 'master' into search
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