From 9f2f674c0b669200dcfb1c27b6e536c6843ffcce Mon Sep 17 00:00:00 2001 From: Scott Williams Date: Fri, 10 Mar 2017 08:22:32 +0000 Subject: [PATCH] vscode run tests in release mode for speed --- .vscode/tasks.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 3edf90c5b6..a1a55a389a 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -22,7 +22,7 @@ }, { "taskName": "test", - "args": ["tests/ImageSharp.Tests/ImageSharp.Tests.csproj", "-f", "netcoreapp1.1"], + "args": ["tests/ImageSharp.Tests/ImageSharp.Tests.csproj", "-c", "release", "-f", "netcoreapp1.1"], "isTestCommand": true, "showOutput": "always", "problemMatcher": "$msCompile"