aboutsummaryrefslogtreecommitdiff
path: root/Aggregator/.vscode/tasks.json
diff options
context:
space:
mode:
Diffstat (limited to 'Aggregator/.vscode/tasks.json')
-rw-r--r--Aggregator/.vscode/tasks.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/Aggregator/.vscode/tasks.json b/Aggregator/.vscode/tasks.json
new file mode 100644
index 0000000..2be1bf2
--- /dev/null
+++ b/Aggregator/.vscode/tasks.json
@@ -0,0 +1,31 @@
+{
+ "version": "2.0.0",
+ "tasks": [{
+ "label": "build",
+ "command": "dotnet",
+ "type": "process",
+ "args": [
+ "build",
+ "${workspaceFolder}/Tests/Tests.csproj"
+ ],
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ },
+ "problemMatcher": "$msCompile"
+ },
+ {
+ "label": "test",
+ "type": "shell",
+ "command": "dotnet",
+ "args": [
+ "test"
+ ],
+ "group": {
+ "kind": "test",
+ "isDefault": true
+ },
+ "problemMatcher": "$msCompile"
+ }
+ ]
+} \ No newline at end of file