diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 4087cf2fb..ca4affea6 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -32,5 +32,28 @@ "group": "build", "problemMatcher": "$msCompile" }, + // Test Tasks + { + "label": "Run tests (Debug)", + "type": "shell", + "command": "dotnet", + "args": [ + "test", + "/p:Configuration=Debug", + ], + "group": "test", + "problemMatcher": "$msCompile" + }, + { + "label": "Run tests (Release)", + "type": "shell", + "command": "dotnet", + "args": [ + "test", + "/p:Configuration=Release", + ], + "group": "test", + "problemMatcher": "$msCompile" + } ] } \ No newline at end of file