From 3914cb31686b38e0be035c1cc995b276d15e748b Mon Sep 17 00:00:00 2001 From: Chris Wolfgang <210299580+Chris-Wolfgang@users.noreply.github.com> Date: Tue, 2 Jun 2026 20:51:04 -0400 Subject: [PATCH] T3: add stryker-config.json --- stryker-config.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 stryker-config.json diff --git a/stryker-config.json b/stryker-config.json new file mode 100644 index 0000000..5073df5 --- /dev/null +++ b/stryker-config.json @@ -0,0 +1,19 @@ +{ + "stryker-config": { + "project": "src/Wolfgang.TryPattern/Wolfgang.TryPattern.csproj", + "test-projects": [ + "tests/Wolfgang.TryPattern.Tests/Wolfgang.TryPattern.Tests.Unit.csproj" + ], + "target-framework": "net10.0", + "reporters": [ + "html", + "json", + "progress" + ], + "thresholds": { + "high": 90, + "low": 75, + "break": 0 + } + } +}