From 84a7f07f9450c2818377dd300d70233b3ccdc941 Mon Sep 17 00:00:00 2001 From: Martin Costello Date: Sat, 28 Oct 2023 09:20:17 +0100 Subject: [PATCH] Fix switch name --- build.cake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.cake b/build.cake index dd806357138..0f4766dfabb 100644 --- a/build.cake +++ b/build.cake @@ -188,7 +188,7 @@ Task("__RunMutationTests") Information($"Running mutation tests for '{proj}'. Test Project: '{testProj}'"); - var args = $"{strykerPath} --project {project} --test-project {testProj.FullPath} --break-at {score} --config-file {strykerConfig} --output {strykerOutput}/{project} --logToFile {strykerOutput}/{project}.log"; + var args = $"{strykerPath} --project {project} --test-project {testProj.FullPath} --break-at {score} --config-file {strykerConfig} --output {strykerOutput}/{project} --log-to-file {strykerOutput}/{project}.log"; var result = StartProcess("dotnet", args); if (result != 0)