diff --git a/docs/serializer-settings.md b/docs/serializer-settings.md
index 8865510552..97d5f29357 100644
--- a/docs/serializer-settings.md
+++ b/docs/serializer-settings.md
@@ -308,7 +308,7 @@ public Task ScopedSerializerFluent()
.AddExtraSettings(_ => _.TypeNameHandling = TypeNameHandling.All);
}
```
-snippet source | anchor
+snippet source | anchor
Result:
@@ -799,7 +799,7 @@ public Task WithObsoleteProp()
return Verify(target);
}
```
-snippet source | anchor
+snippet source | anchor
Result:
@@ -847,7 +847,7 @@ public Task WithObsoletePropIncludedFluent()
.IncludeObsoletes();
}
```
-snippet source | anchor
+snippet source | anchor
Or globally:
@@ -857,7 +857,7 @@ Or globally:
```cs
VerifierSettings.IncludeObsoletes();
```
-snippet source | anchor
+snippet source | anchor
Result:
@@ -918,7 +918,7 @@ public Task IgnoreMemberByExpressionFluent()
_ => _.PropertyThatThrows);
}
```
-snippet source | anchor
+snippet source | anchor
Or globally
@@ -933,7 +933,7 @@ VerifierSettings.IgnoreMembers(
_ => _.GetOnlyProperty,
_ => _.PropertyThatThrows);
```
-snippet source | anchor
+snippet source | anchor
Result:
@@ -993,7 +993,7 @@ public Task ScrubMemberByExpressionFluent()
_ => _.PropertyThatThrows);
}
```
-snippet source | anchor
+snippet source | anchor
Or globally
@@ -1008,7 +1008,7 @@ VerifierSettings.ScrubMembers(
_ => _.GetOnlyProperty,
_ => _.PropertyThatThrows);
```
-snippet source | anchor
+snippet source | anchor
Result:
@@ -1087,7 +1087,7 @@ public Task IgnoreMemberByNameFluent()
.IgnoreMember(_ => _.PropertyThatThrows);
}
```
-snippet source | anchor
+snippet source | anchor
Or globally:
@@ -1107,7 +1107,7 @@ VerifierSettings.IgnoreMember("Field");
// For a specific type with expression
VerifierSettings.IgnoreMember(_ => _.PropertyThatThrows);
```
-snippet source | anchor
+snippet source | anchor
Result:
@@ -1182,7 +1182,7 @@ public Task ScrubMemberByNameFluent()
.ScrubMember(_ => _.PropertyThatThrows);
}
```
-snippet source | anchor
+snippet source | anchor
Or globally:
@@ -1202,7 +1202,7 @@ VerifierSettings.ScrubMember("Field");
// For a specific type with expression
VerifierSettings.ScrubMember(_ => _.PropertyThatThrows);
```
-snippet source | anchor
+snippet source | anchor
Result:
@@ -1253,7 +1253,7 @@ public Task CustomExceptionPropFluent()
.IgnoreMembersThatThrow();
}
```
-snippet source | anchor
+snippet source | anchor
Or globally:
@@ -1263,7 +1263,7 @@ Or globally:
```cs
VerifierSettings.IgnoreMembersThatThrow();
```
-snippet source | anchor
+snippet source | anchor
Result:
@@ -1323,42 +1323,6 @@ Result:
snippet source | anchor
-## Always Include Members
-
-Sometimes it's convenient for certain members/types to always be included in the Verify output, even when they are equal to their default value.
-The biggest example is numeric types e.g. `int` or `double` - output could be more consistent if values might fluctuate between zero and non-zero.
-
-
-
-```cs
-[Fact]
-public Task AlwaysIncludeType()
-{
- var target = new
- {
- A = 0.0,
- B = 1e-26
- };
-
- return Verify(target)
- .AlwaysIncludeMembersWithType();
-}
-```
-snippet source | anchor
-
-
-Result:
-
-
-
-```txt
-{
- A: 0.0,
- B: 1E-26
-}
-```
-snippet source | anchor
-
## TreatAsString
@@ -1504,7 +1468,7 @@ public Task MemberConverterByExpression()
return Verify(input);
}
```
-snippet source | anchor
+snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md
index d0604699c6..2eeef88b52 100644
--- a/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md
index 4eda39c107..82ab5433ff 100644
--- a/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md
index b705091a9c..275413cce3 100644
--- a/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Expecto_None.md b/docs/wiz/Linux_Other_Gui_Expecto_None.md
index 34f61833be..d26e51eeb3 100644
--- a/docs/wiz/Linux_Other_Gui_Expecto_None.md
+++ b/docs/wiz/Linux_Other_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md b/docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md
index f4dcaf5394..861b321b15 100644
--- a/docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md
index 27e9ea6006..11a70891de 100644
--- a/docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md b/docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md
index 3db1de5c8f..29728c64ce 100644
--- a/docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Fixie_None.md b/docs/wiz/Linux_Other_Gui_Fixie_None.md
index 71c76985cc..cb0f8be5ed 100644
--- a/docs/wiz/Linux_Other_Gui_Fixie_None.md
+++ b/docs/wiz/Linux_Other_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md
index 1fc25095b8..66f53e3dd7 100644
--- a/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md
index 06be783f41..e386b55b00 100644
--- a/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md
index 9b0c6b1a0d..e3a578a6ff 100644
--- a/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_MSTest_None.md b/docs/wiz/Linux_Other_Gui_MSTest_None.md
index 241b4ea8d2..7566dd58be 100644
--- a/docs/wiz/Linux_Other_Gui_MSTest_None.md
+++ b/docs/wiz/Linux_Other_Gui_MSTest_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md
index c448ef251e..c42b12a538 100644
--- a/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md
index 65d5d316e0..d64189477f 100644
--- a/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md
index e75267303f..97e6ef5947 100644
--- a/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_NUnit_None.md b/docs/wiz/Linux_Other_Gui_NUnit_None.md
index ed543a563f..c508c420cd 100644
--- a/docs/wiz/Linux_Other_Gui_NUnit_None.md
+++ b/docs/wiz/Linux_Other_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Xunit_AppVeyor.md b/docs/wiz/Linux_Other_Gui_Xunit_AppVeyor.md
index 498b7f706d..bed831a70d 100644
--- a/docs/wiz/Linux_Other_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_Xunit_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Linux_Other_Gui_Xunit_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_Xunit_AzureDevOps.md
index c88e0be485..f22d4e5960 100644
--- a/docs/wiz/Linux_Other_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_Xunit_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Linux_Other_Gui_Xunit_GitHubActions.md b/docs/wiz/Linux_Other_Gui_Xunit_GitHubActions.md
index d30551b6f8..ce4025d774 100644
--- a/docs/wiz/Linux_Other_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_Xunit_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Linux_Other_Gui_Xunit_None.md b/docs/wiz/Linux_Other_Gui_Xunit_None.md
index 1b65c5b597..aeaf090fc7 100644
--- a/docs/wiz/Linux_Other_Gui_Xunit_None.md
+++ b/docs/wiz/Linux_Other_Gui_Xunit_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md
index 2b041774b7..e6f15ae948 100644
--- a/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md
index 280d00d750..99bf219492 100644
--- a/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md
index f5377a597e..3d5596fbb4 100644
--- a/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_None.md b/docs/wiz/Linux_Rider_Gui_Expecto_None.md
index e2f4626f5a..2c4dd9240c 100644
--- a/docs/wiz/Linux_Rider_Gui_Expecto_None.md
+++ b/docs/wiz/Linux_Rider_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md
index 6f1f0020dc..07cbbd5c98 100644
--- a/docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md
index 29679b073c..78e775c34a 100644
--- a/docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md
index 0c955aef00..39d7eb6e66 100644
--- a/docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Fixie_None.md b/docs/wiz/Linux_Rider_Gui_Fixie_None.md
index d6bed0fd31..21a5bff640 100644
--- a/docs/wiz/Linux_Rider_Gui_Fixie_None.md
+++ b/docs/wiz/Linux_Rider_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md
index 5cfeef0637..76cac5a510 100644
--- a/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md
index 5ae4928226..fcfe630479 100644
--- a/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md
index 6b68910a53..958ca70f8a 100644
--- a/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_None.md b/docs/wiz/Linux_Rider_Gui_MSTest_None.md
index d93711e6f2..b332ee3d47 100644
--- a/docs/wiz/Linux_Rider_Gui_MSTest_None.md
+++ b/docs/wiz/Linux_Rider_Gui_MSTest_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md
index ce4abf124c..c55a40f2f0 100644
--- a/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md
index fc430ecab2..9281a62b46 100644
--- a/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md
index 0f7fd3e389..040d61f708 100644
--- a/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_None.md b/docs/wiz/Linux_Rider_Gui_NUnit_None.md
index 6b07dae3b6..0ba904a4ba 100644
--- a/docs/wiz/Linux_Rider_Gui_NUnit_None.md
+++ b/docs/wiz/Linux_Rider_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Xunit_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_Xunit_AppVeyor.md
index 7a12de29cd..aa5f5f82c4 100644
--- a/docs/wiz/Linux_Rider_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_Xunit_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Linux_Rider_Gui_Xunit_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_Xunit_AzureDevOps.md
index a4b65c02a8..f59c21adeb 100644
--- a/docs/wiz/Linux_Rider_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_Xunit_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Linux_Rider_Gui_Xunit_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_Xunit_GitHubActions.md
index 83a6f1a395..6148d77cad 100644
--- a/docs/wiz/Linux_Rider_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_Xunit_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Linux_Rider_Gui_Xunit_None.md b/docs/wiz/Linux_Rider_Gui_Xunit_None.md
index b701c3cfff..fda4070b37 100644
--- a/docs/wiz/Linux_Rider_Gui_Xunit_None.md
+++ b/docs/wiz/Linux_Rider_Gui_Xunit_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md
index 361a63a154..edeaaf8c75 100644
--- a/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md
index 58643b67ea..37ea2618d1 100644
--- a/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md
index 0aa426e7bd..4fb03fc9b7 100644
--- a/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_None.md b/docs/wiz/MacOS_Other_Gui_Expecto_None.md
index ac058d1a91..8a9683bae4 100644
--- a/docs/wiz/MacOS_Other_Gui_Expecto_None.md
+++ b/docs/wiz/MacOS_Other_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md
index e425875634..1f20dfd498 100644
--- a/docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md
index 9b2b256317..c884c75c90 100644
--- a/docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md
index 90756538d8..9625870538 100644
--- a/docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Fixie_None.md b/docs/wiz/MacOS_Other_Gui_Fixie_None.md
index c3d3adbac3..948b7caab9 100644
--- a/docs/wiz/MacOS_Other_Gui_Fixie_None.md
+++ b/docs/wiz/MacOS_Other_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md
index d1783c4b26..05f7093d6d 100644
--- a/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md
index 5be01d77c4..da097d126a 100644
--- a/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md
index b76928bc8c..fd106e48ae 100644
--- a/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_None.md b/docs/wiz/MacOS_Other_Gui_MSTest_None.md
index 07323bff0a..6186226d6b 100644
--- a/docs/wiz/MacOS_Other_Gui_MSTest_None.md
+++ b/docs/wiz/MacOS_Other_Gui_MSTest_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md
index 1f49750d9c..8bf85e9f83 100644
--- a/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md
index f5d631cd1a..f5cefd2d10 100644
--- a/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md
index 8612a54c38..969aedf1ee 100644
--- a/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_None.md b/docs/wiz/MacOS_Other_Gui_NUnit_None.md
index 718a52ae84..c398f0952e 100644
--- a/docs/wiz/MacOS_Other_Gui_NUnit_None.md
+++ b/docs/wiz/MacOS_Other_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Xunit_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_Xunit_AppVeyor.md
index 6b62a3fed8..27c862080b 100644
--- a/docs/wiz/MacOS_Other_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_Xunit_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/MacOS_Other_Gui_Xunit_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_Xunit_AzureDevOps.md
index acd25faaa9..1cb9011495 100644
--- a/docs/wiz/MacOS_Other_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_Xunit_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/MacOS_Other_Gui_Xunit_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_Xunit_GitHubActions.md
index c3758c2f9c..c2acb18ea0 100644
--- a/docs/wiz/MacOS_Other_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_Xunit_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/MacOS_Other_Gui_Xunit_None.md b/docs/wiz/MacOS_Other_Gui_Xunit_None.md
index 3ec1769b91..5c1b6a2727 100644
--- a/docs/wiz/MacOS_Other_Gui_Xunit_None.md
+++ b/docs/wiz/MacOS_Other_Gui_Xunit_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md
index f5669e1668..9d45ea24d6 100644
--- a/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md
index 2b437359f0..fc93d4b496 100644
--- a/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md
index 24e56260cc..4dd70f8994 100644
--- a/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_None.md b/docs/wiz/MacOS_Rider_Gui_Expecto_None.md
index 6ba84472a1..6271fea5b0 100644
--- a/docs/wiz/MacOS_Rider_Gui_Expecto_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md
index 56e4f8e4e5..332e65a8b0 100644
--- a/docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md
index 39dd574134..d78477b184 100644
--- a/docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md
index 6b831a13e4..55f581b5f9 100644
--- a/docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Fixie_None.md b/docs/wiz/MacOS_Rider_Gui_Fixie_None.md
index 092767c285..a8a3d56a6b 100644
--- a/docs/wiz/MacOS_Rider_Gui_Fixie_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md
index 546a1b0b22..ecd203d723 100644
--- a/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md
index eee658755f..521990ba6c 100644
--- a/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md
index 5597ed0767..833be968b1 100644
--- a/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_None.md b/docs/wiz/MacOS_Rider_Gui_MSTest_None.md
index 6e68958314..37d0d0f54c 100644
--- a/docs/wiz/MacOS_Rider_Gui_MSTest_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_MSTest_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md
index 025e0dbfcf..24ff7e1566 100644
--- a/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md
index 008c59a7f2..3754c75c8c 100644
--- a/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md
index 4271f94f89..16d1871c4a 100644
--- a/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_None.md b/docs/wiz/MacOS_Rider_Gui_NUnit_None.md
index b5e6315a11..390de4e5b4 100644
--- a/docs/wiz/MacOS_Rider_Gui_NUnit_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Xunit_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_Xunit_AppVeyor.md
index cc741e61ad..c094f6843a 100644
--- a/docs/wiz/MacOS_Rider_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_Xunit_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/MacOS_Rider_Gui_Xunit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_Xunit_AzureDevOps.md
index 0554de9ee2..0cfbd083a3 100644
--- a/docs/wiz/MacOS_Rider_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_Xunit_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/MacOS_Rider_Gui_Xunit_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_Xunit_GitHubActions.md
index 8083edd82e..af1eed28bc 100644
--- a/docs/wiz/MacOS_Rider_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_Xunit_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/MacOS_Rider_Gui_Xunit_None.md b/docs/wiz/MacOS_Rider_Gui_Xunit_None.md
index 2a2db99d4f..afca4222ec 100644
--- a/docs/wiz/MacOS_Rider_Gui_Xunit_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_Xunit_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md
index 71b0c951f6..d475c1c75b 100644
--- a/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md
index 54d770a262..76a727c63e 100644
--- a/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md
index 3549bbbb3a..063e5f9919 100644
--- a/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Expecto_None.md b/docs/wiz/Windows_Other_Gui_Expecto_None.md
index 44fd4ba3db..34d900b77f 100644
--- a/docs/wiz/Windows_Other_Gui_Expecto_None.md
+++ b/docs/wiz/Windows_Other_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md b/docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md
index 874a55f333..03e2d78152 100644
--- a/docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md
index 6ec2d71428..7a32926290 100644
--- a/docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md b/docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md
index 9a378541fb..5b8fe0da3a 100644
--- a/docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Fixie_None.md b/docs/wiz/Windows_Other_Gui_Fixie_None.md
index d848175849..27d657aa1b 100644
--- a/docs/wiz/Windows_Other_Gui_Fixie_None.md
+++ b/docs/wiz/Windows_Other_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md
index 0e80d0d4dd..38e0bdd320 100644
--- a/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md
index 043f4befd6..c24faddeef 100644
--- a/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md
index 4cb7fa54dd..120f31c2f4 100644
--- a/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_MSTest_None.md b/docs/wiz/Windows_Other_Gui_MSTest_None.md
index c7e64d9ffe..98c17dd0c8 100644
--- a/docs/wiz/Windows_Other_Gui_MSTest_None.md
+++ b/docs/wiz/Windows_Other_Gui_MSTest_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md
index a9b3a3c263..14d3dab02c 100644
--- a/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md
index 0563acc283..9804998d7b 100644
--- a/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md
index 67accbcc3d..2ce8c27e95 100644
--- a/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_NUnit_None.md b/docs/wiz/Windows_Other_Gui_NUnit_None.md
index 9e81aa42ea..8b551684e8 100644
--- a/docs/wiz/Windows_Other_Gui_NUnit_None.md
+++ b/docs/wiz/Windows_Other_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Xunit_AppVeyor.md b/docs/wiz/Windows_Other_Gui_Xunit_AppVeyor.md
index 935dd4c773..4e2fa8a838 100644
--- a/docs/wiz/Windows_Other_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_Xunit_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_Other_Gui_Xunit_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_Xunit_AzureDevOps.md
index a4f466639a..efb8bb74db 100644
--- a/docs/wiz/Windows_Other_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_Xunit_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_Other_Gui_Xunit_GitHubActions.md b/docs/wiz/Windows_Other_Gui_Xunit_GitHubActions.md
index 5e1960a84d..0ffd04dc15 100644
--- a/docs/wiz/Windows_Other_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_Xunit_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_Other_Gui_Xunit_None.md b/docs/wiz/Windows_Other_Gui_Xunit_None.md
index d2048508a7..9d7f9b28c3 100644
--- a/docs/wiz/Windows_Other_Gui_Xunit_None.md
+++ b/docs/wiz/Windows_Other_Gui_Xunit_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md
index 79468a11be..9554000205 100644
--- a/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md
index 9b46d56a93..3ff8df75cd 100644
--- a/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md
index 27246aede9..d47c0305e0 100644
--- a/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_None.md b/docs/wiz/Windows_Rider_Gui_Expecto_None.md
index 257ab07c84..6c70e5bee6 100644
--- a/docs/wiz/Windows_Rider_Gui_Expecto_None.md
+++ b/docs/wiz/Windows_Rider_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md
index 37adfcef6b..4fa7b7649d 100644
--- a/docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md
index 4e9b9e7e71..986c5769a4 100644
--- a/docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md
index f65e586b11..5caa63d2b5 100644
--- a/docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Fixie_None.md b/docs/wiz/Windows_Rider_Gui_Fixie_None.md
index e7afb59a50..d507cb7427 100644
--- a/docs/wiz/Windows_Rider_Gui_Fixie_None.md
+++ b/docs/wiz/Windows_Rider_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md
index 0b6fe5c4f2..691db8c678 100644
--- a/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md
index 0985ea0668..df88c47138 100644
--- a/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md
index b5ab6311b3..b672bde38e 100644
--- a/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_None.md b/docs/wiz/Windows_Rider_Gui_MSTest_None.md
index 2f89b8fb26..e6a286ed7a 100644
--- a/docs/wiz/Windows_Rider_Gui_MSTest_None.md
+++ b/docs/wiz/Windows_Rider_Gui_MSTest_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md
index 489bf72e28..8fb2280ae8 100644
--- a/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md
index ac0d994f30..09f37a3ffa 100644
--- a/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md
index c2d538a9f1..26bc595ef2 100644
--- a/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_None.md b/docs/wiz/Windows_Rider_Gui_NUnit_None.md
index 0f8479e6dd..3d841978e3 100644
--- a/docs/wiz/Windows_Rider_Gui_NUnit_None.md
+++ b/docs/wiz/Windows_Rider_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Xunit_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_Xunit_AppVeyor.md
index 24cfbdb604..95a3269a83 100644
--- a/docs/wiz/Windows_Rider_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_Xunit_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_Rider_Gui_Xunit_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_Xunit_AzureDevOps.md
index 6ee5ea6a04..913bcd0c6d 100644
--- a/docs/wiz/Windows_Rider_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_Xunit_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_Rider_Gui_Xunit_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_Xunit_GitHubActions.md
index 09cf3fe7b2..94b6c165c2 100644
--- a/docs/wiz/Windows_Rider_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_Xunit_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_Rider_Gui_Xunit_None.md b/docs/wiz/Windows_Rider_Gui_Xunit_None.md
index fd0cc3bf14..f97370d7e6 100644
--- a/docs/wiz/Windows_Rider_Gui_Xunit_None.md
+++ b/docs/wiz/Windows_Rider_Gui_Xunit_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md
index d7114f2dd7..dec22586b9 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md
index 44b2c8b2e5..019fc03e79 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md
index 8b84152303..57b5acc11f 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md
index a517a5be4f..0f017927ae 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md
index b46dbe3715..1e77b36316 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md
index 2207224a9b..3cbc03b207 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md
index d6b6cb79ae..65129fa451 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_None.md
index 6023bfe7b2..c8d0f98339 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md
index 7bc6b82669..cf05fe84c0 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md
index 7d713ca8dc..3987864ecd 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md
index 9dc5c4372a..10a8ec20a5 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md
index fce870db79..f3f4a84a92 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md
index 201daf23e9..e631b8b3ff 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md
index ce4c3953b2..0edcd196da 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md
index 300de139e7..dbcdbd300a 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md
index 92ef0f8c93..81326080b3 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AppVeyor.md
index a35bb808a7..e999f31c72 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AzureDevOps.md
index 34828ab256..a79ac4ec09 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_GitHubActions.md
index 0a4aac38e0..24fc29e4ef 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_None.md
index 4a043a78f0..cc35275401 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md
index 0498d248e0..8ee9cbfd05 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md
index e7d837e21e..1084b5842c 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md
index cd254017c1..046047d374 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md
index 5e571c59a2..6e4e7baf8c 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md
index d2543783ab..f3bab4b72e 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md
index c85e302611..2b531e5621 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md
index b298ccf6c5..1789a09d9a 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md b/docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md
index 0858690276..dc5a52c8da 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md
index 23a7f42362..b278ef4eed 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md
index 61ad4e4c47..55c94397bf 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md
index 779d43dbd7..334ad3e639 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md
index 33772fa56b..57df897cf8 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md
index 6f48178ba3..73932939b4 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md
index ab99191393..604f402f9e 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md
index 45ae64c161..f7643d838d 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md
index 88c569561d..032d31cfc9 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Xunit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_Xunit_AppVeyor.md
index 4b2e5674ac..b9c395536a 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Xunit_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Xunit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_Xunit_AzureDevOps.md
index 20a381ac39..5ee18704e6 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Xunit_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Xunit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_Xunit_GitHubActions.md
index 368864a9c1..df62896b51 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Xunit_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Xunit_None.md b/docs/wiz/Windows_VisualStudio_Gui_Xunit_None.md
index b74448122b..e8874c26d4 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Xunit_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Xunit_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
diff --git a/src/NugetUsage/FixieNugetUsage/FixieNugetUsage.csproj b/src/NugetUsage/FixieNugetUsage/FixieNugetUsage.csproj
index 8d78673a68..e93afdcfb5 100644
--- a/src/NugetUsage/FixieNugetUsage/FixieNugetUsage.csproj
+++ b/src/NugetUsage/FixieNugetUsage/FixieNugetUsage.csproj
@@ -6,7 +6,7 @@
-
+
\ No newline at end of file
diff --git a/src/NugetUsage/MSTestNugetUsage/MSTestNugetUsage.csproj b/src/NugetUsage/MSTestNugetUsage/MSTestNugetUsage.csproj
index d360cba1d2..1832fb23bf 100644
--- a/src/NugetUsage/MSTestNugetUsage/MSTestNugetUsage.csproj
+++ b/src/NugetUsage/MSTestNugetUsage/MSTestNugetUsage.csproj
@@ -8,7 +8,7 @@
-
+
\ No newline at end of file
diff --git a/src/NugetUsage/NUnitNugetUsage/NUnitNugetUsage.csproj b/src/NugetUsage/NUnitNugetUsage/NUnitNugetUsage.csproj
index 89e0bc157b..95f673c435 100644
--- a/src/NugetUsage/NUnitNugetUsage/NUnitNugetUsage.csproj
+++ b/src/NugetUsage/NUnitNugetUsage/NUnitNugetUsage.csproj
@@ -7,7 +7,7 @@
-
+
\ No newline at end of file
diff --git a/src/NugetUsage/XunitNugetUsage/XunitNugetUsage.csproj b/src/NugetUsage/XunitNugetUsage/XunitNugetUsage.csproj
index 9a41080494..927766e3b4 100644
--- a/src/NugetUsage/XunitNugetUsage/XunitNugetUsage.csproj
+++ b/src/NugetUsage/XunitNugetUsage/XunitNugetUsage.csproj
@@ -6,7 +6,7 @@
-
+