Browse Source

Added dotnet tools

Marcin Ziąbek 2 years ago
parent
commit
46b0e102d9
2 changed files with 27 additions and 0 deletions
  1. 12 0
      Source/.config/dotnet-tools.json
  2. 15 0
      Source/.config/stryker-config.json

+ 12 - 0
Source/.config/dotnet-tools.json

@@ -0,0 +1,12 @@
+{
+  "version": 1,
+  "isRoot": true,
+  "tools": {
+    "dotnet-stryker": {
+      "version": "3.11.1",
+      "commands": [
+        "dotnet-stryker"
+      ]
+    }
+  }
+}

+ 15 - 0
Source/.config/stryker-config.json

@@ -0,0 +1,15 @@
+{
+  "stryker-config":
+  {
+    "solution": "../QuestPDF.sln",
+    "project": "QuestPDF/QuestPDF.csproj",
+    "test-projects": ["../QuestPDF.LayoutTests/QuestPDF.LayoutTests.csproj"],
+    "mutate": ["**/*Column.cs"],
+    "reporters": [
+      "progress",
+      "html"
+    ],
+    "disable-mix-mutants": true,
+    "disable-bail": true
+  }
+}