aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2019-04-24 20:52:34 +0800
committercrupest <crupest@outlook.com>2019-04-24 20:52:34 +0800
commite241dd42b406bdc418bb487d503d65e5b207deb8 (patch)
treea613b568085a912d13f0ec5c2053c25278f21abc /.vscode/tasks.json
parent1bdae799ad607a06027f61c5194e7729081418cf (diff)
downloadtimeline-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.json36
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