diff options
author | crupest <crupest@outlook.com> | 2019-04-24 20:52:34 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-04-24 20:52:34 +0800 |
commit | e241dd42b406bdc418bb487d503d65e5b207deb8 (patch) | |
tree | a613b568085a912d13f0ec5c2053c25278f21abc /.vscode/tasks.json | |
parent | 1bdae799ad607a06027f61c5194e7729081418cf (diff) | |
download | timeline-e241dd42b406bdc418bb487d503d65e5b207deb8.tar.gz timeline-e241dd42b406bdc418bb487d503d65e5b207deb8.tar.bz2 timeline-e241dd42b406bdc418bb487d503d65e5b207deb8.zip |
Add development environment on archlinux.
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r-- | .vscode/tasks.json | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..eeb06c4f --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,36 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/Timeline/Timeline.csproj" + ], + "problemMatcher": "$tsc" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/Timeline/Timeline.csproj" + ], + "problemMatcher": "$tsc" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "${workspaceFolder}/Timeline/Timeline.csproj" + ], + "problemMatcher": "$tsc" + } + ] +}
\ No newline at end of file |