summaryrefslogtreecommitdiffstats
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-04-18 23:54:35 +0000
committerToby Vincent <tobyv13@gmail.com>2021-04-18 23:54:35 +0000
commitcf192cef8e969c00b6d243f76e5a20b326ec59e1 (patch)
treef8930b980dd9a9e151249bc991f5cd708febdbe3 /.vscode/tasks.json
parent57492674a247337ced3db690fdcdb965a205ed34 (diff)
build scafolding and inital logic
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 0000000..0cf25e7
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,42 @@
+{
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "build",
+ "command": "dotnet",
+ "type": "process",
+ "args": [
+ "build",
+ "${workspaceFolder}/src/CS340.TSP/CS340.TSP.csproj",
+ "/property:GenerateFullPaths=true",
+ "/consoleloggerparameters:NoSummary"
+ ],
+ "problemMatcher": "$msCompile"
+ },
+ {
+ "label": "publish",
+ "command": "dotnet",
+ "type": "process",
+ "args": [
+ "publish",
+ "${workspaceFolder}/src/CS340.TSP/CS340.TSP.csproj",
+ "/property:GenerateFullPaths=true",
+ "/consoleloggerparameters:NoSummary"
+ ],
+ "problemMatcher": "$msCompile"
+ },
+ {
+ "label": "watch",
+ "command": "dotnet",
+ "type": "process",
+ "args": [
+ "watch",
+ "run",
+ "${workspaceFolder}/src/CS340.TSP/CS340.TSP.csproj",
+ "/property:GenerateFullPaths=true",
+ "/consoleloggerparameters:NoSummary"
+ ],
+ "problemMatcher": "$msCompile"
+ }
+ ]
+} \ No newline at end of file