diff --git a/docs/build-server.md b/docs/build-server.md
index 9434f16e3d..4eedcd033a 100644
--- a/docs/build-server.md
+++ b/docs/build-server.md
@@ -13,7 +13,7 @@ To change this file edit the source file and then run MarkdownSnippets.
### AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -24,12 +24,12 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
### GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
@@ -45,7 +45,7 @@ Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/re
### Azure DevOps YAML Pipeline
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/readme.md b/docs/readme.md
index d8953fca17..acbd0c35bd 100644
--- a/docs/readme.md
+++ b/docs/readme.md
@@ -7,7 +7,7 @@ To change this file edit the source file and then run MarkdownSnippets.
# Documentation
- * [Clipboard](/docs/clipboard.md)
+ * [Clipboard](/docs/clipboard.md)
* [Compared to assertions](/docs/compared-to-assertion.md)
* [Verify options](/docs/verify-options.md)
* [VerifyDirectory](/docs/verify-directory.md)
@@ -31,4 +31,4 @@ To change this file edit the source file and then run MarkdownSnippets.
* [Converters](/docs/converter.md)
* [Explicit Targets](/docs/explicit-targets.md)
* [FSharp Usage](/docs/fsharp.md)
- * [Compared to ApprovalTests](/docs/compared-to-approvaltests.md)
+ * [Compared to ApprovalTests](/docs/compared-to-approvaltests.md)
diff --git a/docs/wiz/Linux_Other_Cli_Expecto_AppVeyor.md b/docs/wiz/Linux_Other_Cli_Expecto_AppVeyor.md
index 7a3585951a..1439f415b9 100644
--- a/docs/wiz/Linux_Other_Cli_Expecto_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Cli_Expecto_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -171,5 +171,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Other_Cli_Expecto_AzureDevOps.md b/docs/wiz/Linux_Other_Cli_Expecto_AzureDevOps.md
index f8fcf009e4..618b6f990a 100644
--- a/docs/wiz/Linux_Other_Cli_Expecto_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Cli_Expecto_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Other_Cli_Expecto_GitHubActions.md b/docs/wiz/Linux_Other_Cli_Expecto_GitHubActions.md
index ea99e8a96a..827a02b82c 100644
--- a/docs/wiz/Linux_Other_Cli_Expecto_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Cli_Expecto_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Other_Cli_Expecto_None.md b/docs/wiz/Linux_Other_Cli_Expecto_None.md
index 34167fcb3d..2f3fc7dd64 100644
--- a/docs/wiz/Linux_Other_Cli_Expecto_None.md
+++ b/docs/wiz/Linux_Other_Cli_Expecto_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/Linux_Other_Cli_MSTest_AppVeyor.md b/docs/wiz/Linux_Other_Cli_MSTest_AppVeyor.md
index 4fb71667da..985eda1dfe 100644
--- a/docs/wiz/Linux_Other_Cli_MSTest_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Cli_MSTest_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -161,7 +161,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -172,5 +172,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Other_Cli_MSTest_AzureDevOps.md b/docs/wiz/Linux_Other_Cli_MSTest_AzureDevOps.md
index 3f7d1b498f..dd6c49a655 100644
--- a/docs/wiz/Linux_Other_Cli_MSTest_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Cli_MSTest_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -161,7 +161,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Other_Cli_MSTest_GitHubActions.md b/docs/wiz/Linux_Other_Cli_MSTest_GitHubActions.md
index 53bacf681b..ed28aa0647 100644
--- a/docs/wiz/Linux_Other_Cli_MSTest_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Cli_MSTest_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -161,7 +161,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Other_Cli_MSTest_None.md b/docs/wiz/Linux_Other_Cli_MSTest_None.md
index 7de71073da..fb4851cfe8 100644
--- a/docs/wiz/Linux_Other_Cli_MSTest_None.md
+++ b/docs/wiz/Linux_Other_Cli_MSTest_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/Linux_Other_Cli_NUnit_AppVeyor.md b/docs/wiz/Linux_Other_Cli_NUnit_AppVeyor.md
index c8b69f6f33..68e6c01fdc 100644
--- a/docs/wiz/Linux_Other_Cli_NUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Cli_NUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -171,5 +171,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Other_Cli_NUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Cli_NUnit_AzureDevOps.md
index a0c5c012a0..676ec5bb38 100644
--- a/docs/wiz/Linux_Other_Cli_NUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Cli_NUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Other_Cli_NUnit_GitHubActions.md b/docs/wiz/Linux_Other_Cli_NUnit_GitHubActions.md
index 4ad7e80bef..6d9bdb10f6 100644
--- a/docs/wiz/Linux_Other_Cli_NUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Cli_NUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Other_Cli_NUnit_None.md b/docs/wiz/Linux_Other_Cli_NUnit_None.md
index 7ca84f5376..c9819a4518 100644
--- a/docs/wiz/Linux_Other_Cli_NUnit_None.md
+++ b/docs/wiz/Linux_Other_Cli_NUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/Linux_Other_Cli_xUnit_AppVeyor.md b/docs/wiz/Linux_Other_Cli_xUnit_AppVeyor.md
index 6bbf695ac7..be5d0933b2 100644
--- a/docs/wiz/Linux_Other_Cli_xUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Cli_xUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -171,5 +171,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Other_Cli_xUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Cli_xUnit_AzureDevOps.md
index aeace17483..150360b2d4 100644
--- a/docs/wiz/Linux_Other_Cli_xUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Cli_xUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Other_Cli_xUnit_GitHubActions.md b/docs/wiz/Linux_Other_Cli_xUnit_GitHubActions.md
index 16f3b6447b..a6773fc0da 100644
--- a/docs/wiz/Linux_Other_Cli_xUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Cli_xUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Other_Cli_xUnit_None.md b/docs/wiz/Linux_Other_Cli_xUnit_None.md
index 52e62198b6..1b20a6e3bf 100644
--- a/docs/wiz/Linux_Other_Cli_xUnit_None.md
+++ b/docs/wiz/Linux_Other_Cli_xUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md
index 854070547f..e6e61dd859 100644
--- a/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -154,7 +154,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -165,5 +165,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md
index 918b5d87a8..f7e0c4ceba 100644
--- a/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -154,7 +154,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md
index 407201d913..6b9b6d367a 100644
--- a/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -154,7 +154,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Other_Gui_Expecto_None.md b/docs/wiz/Linux_Other_Gui_Expecto_None.md
index a0ae1fca2f..f7a90da18c 100644
--- a/docs/wiz/Linux_Other_Gui_Expecto_None.md
+++ b/docs/wiz/Linux_Other_Gui_Expecto_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md
index 83c6603f7c..a889c0a201 100644
--- a/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -155,7 +155,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -166,5 +166,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md
index 719985e829..21eae3a44a 100644
--- a/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -155,7 +155,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md
index 09e2bb489e..80e1cc72db 100644
--- a/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -155,7 +155,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Other_Gui_MSTest_None.md b/docs/wiz/Linux_Other_Gui_MSTest_None.md
index c0a3e516f1..84e09ae846 100644
--- a/docs/wiz/Linux_Other_Gui_MSTest_None.md
+++ b/docs/wiz/Linux_Other_Gui_MSTest_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md
index 8d5872125e..a31d5e5ee1 100644
--- a/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -154,7 +154,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -165,5 +165,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md
index f8fbfa03cf..39fd93594b 100644
--- a/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -154,7 +154,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md
index 77eee77951..52e0b8f073 100644
--- a/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -154,7 +154,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Other_Gui_NUnit_None.md b/docs/wiz/Linux_Other_Gui_NUnit_None.md
index 2dab3bf7e2..ad39cfba3b 100644
--- a/docs/wiz/Linux_Other_Gui_NUnit_None.md
+++ b/docs/wiz/Linux_Other_Gui_NUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/Linux_Other_Gui_xUnit_AppVeyor.md b/docs/wiz/Linux_Other_Gui_xUnit_AppVeyor.md
index b1cb38ced5..86f9521c82 100644
--- a/docs/wiz/Linux_Other_Gui_xUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_xUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -154,7 +154,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -165,5 +165,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Other_Gui_xUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_xUnit_AzureDevOps.md
index 03411cf25e..0b3216f5b9 100644
--- a/docs/wiz/Linux_Other_Gui_xUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_xUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -154,7 +154,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Other_Gui_xUnit_GitHubActions.md b/docs/wiz/Linux_Other_Gui_xUnit_GitHubActions.md
index b4be4e8112..868e4179a8 100644
--- a/docs/wiz/Linux_Other_Gui_xUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_xUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -154,7 +154,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Other_Gui_xUnit_None.md b/docs/wiz/Linux_Other_Gui_xUnit_None.md
index 3700d7f028..6a36ae08e8 100644
--- a/docs/wiz/Linux_Other_Gui_xUnit_None.md
+++ b/docs/wiz/Linux_Other_Gui_xUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/Linux_Rider_Cli_Expecto_AppVeyor.md b/docs/wiz/Linux_Rider_Cli_Expecto_AppVeyor.md
index 4545179d0e..5ce18addfc 100644
--- a/docs/wiz/Linux_Rider_Cli_Expecto_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Cli_Expecto_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -180,5 +180,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Rider_Cli_Expecto_AzureDevOps.md b/docs/wiz/Linux_Rider_Cli_Expecto_AzureDevOps.md
index f58a3c2277..2411f7a0f1 100644
--- a/docs/wiz/Linux_Rider_Cli_Expecto_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Cli_Expecto_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Rider_Cli_Expecto_GitHubActions.md b/docs/wiz/Linux_Rider_Cli_Expecto_GitHubActions.md
index 58958ba3fe..bbd5432a8d 100644
--- a/docs/wiz/Linux_Rider_Cli_Expecto_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Cli_Expecto_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Rider_Cli_Expecto_None.md b/docs/wiz/Linux_Rider_Cli_Expecto_None.md
index deaa207096..1014c50361 100644
--- a/docs/wiz/Linux_Rider_Cli_Expecto_None.md
+++ b/docs/wiz/Linux_Rider_Cli_Expecto_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/Linux_Rider_Cli_MSTest_AppVeyor.md b/docs/wiz/Linux_Rider_Cli_MSTest_AppVeyor.md
index 63a5cc1680..a04d4a748b 100644
--- a/docs/wiz/Linux_Rider_Cli_MSTest_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Cli_MSTest_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -170,7 +170,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -181,5 +181,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Rider_Cli_MSTest_AzureDevOps.md b/docs/wiz/Linux_Rider_Cli_MSTest_AzureDevOps.md
index 731e0a5f0f..6a05f21556 100644
--- a/docs/wiz/Linux_Rider_Cli_MSTest_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Cli_MSTest_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -170,7 +170,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Rider_Cli_MSTest_GitHubActions.md b/docs/wiz/Linux_Rider_Cli_MSTest_GitHubActions.md
index 23766664c0..199d348016 100644
--- a/docs/wiz/Linux_Rider_Cli_MSTest_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Cli_MSTest_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -170,7 +170,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Rider_Cli_MSTest_None.md b/docs/wiz/Linux_Rider_Cli_MSTest_None.md
index 02ca60ca84..7bffbcff00 100644
--- a/docs/wiz/Linux_Rider_Cli_MSTest_None.md
+++ b/docs/wiz/Linux_Rider_Cli_MSTest_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/Linux_Rider_Cli_NUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Cli_NUnit_AppVeyor.md
index 8b24b2750f..4a2737a787 100644
--- a/docs/wiz/Linux_Rider_Cli_NUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Cli_NUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -180,5 +180,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Rider_Cli_NUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Cli_NUnit_AzureDevOps.md
index 6894e90246..5143530a62 100644
--- a/docs/wiz/Linux_Rider_Cli_NUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Cli_NUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Rider_Cli_NUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Cli_NUnit_GitHubActions.md
index 3f04fec1a3..d99e027ede 100644
--- a/docs/wiz/Linux_Rider_Cli_NUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Cli_NUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Rider_Cli_NUnit_None.md b/docs/wiz/Linux_Rider_Cli_NUnit_None.md
index 91621865c1..50c11d0eca 100644
--- a/docs/wiz/Linux_Rider_Cli_NUnit_None.md
+++ b/docs/wiz/Linux_Rider_Cli_NUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/Linux_Rider_Cli_xUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Cli_xUnit_AppVeyor.md
index 274cd02d43..ea3cea649d 100644
--- a/docs/wiz/Linux_Rider_Cli_xUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Cli_xUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -180,5 +180,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Rider_Cli_xUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Cli_xUnit_AzureDevOps.md
index c871bbdb8d..53f9548d7a 100644
--- a/docs/wiz/Linux_Rider_Cli_xUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Cli_xUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Rider_Cli_xUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Cli_xUnit_GitHubActions.md
index 4ac91c9c77..8b828d79df 100644
--- a/docs/wiz/Linux_Rider_Cli_xUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Cli_xUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Rider_Cli_xUnit_None.md b/docs/wiz/Linux_Rider_Cli_xUnit_None.md
index 0a77bdeced..7e0f7d8c98 100644
--- a/docs/wiz/Linux_Rider_Cli_xUnit_None.md
+++ b/docs/wiz/Linux_Rider_Cli_xUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md
index 39ea020d45..9efbd30fe8 100644
--- a/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -163,7 +163,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -174,5 +174,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md
index 7e0aaade48..66d5ecee81 100644
--- a/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -163,7 +163,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md
index f626929bfc..d89725435f 100644
--- a/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -163,7 +163,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_None.md b/docs/wiz/Linux_Rider_Gui_Expecto_None.md
index 3fca87ce39..15e5658b29 100644
--- a/docs/wiz/Linux_Rider_Gui_Expecto_None.md
+++ b/docs/wiz/Linux_Rider_Gui_Expecto_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md
index b06deced53..7ab1ab62ce 100644
--- a/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -164,7 +164,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -175,5 +175,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md
index 4ba6f25b14..12e47d8691 100644
--- a/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -164,7 +164,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md
index e58351db80..67837aba05 100644
--- a/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -164,7 +164,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_None.md b/docs/wiz/Linux_Rider_Gui_MSTest_None.md
index 348340f759..4103eb631b 100644
--- a/docs/wiz/Linux_Rider_Gui_MSTest_None.md
+++ b/docs/wiz/Linux_Rider_Gui_MSTest_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md
index 6937ec576d..4a5e762c30 100644
--- a/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -163,7 +163,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -174,5 +174,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md
index 4bfd6155b0..8f67d6367d 100644
--- a/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -163,7 +163,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md
index 607e93ab71..4f246a935f 100644
--- a/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -163,7 +163,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_None.md b/docs/wiz/Linux_Rider_Gui_NUnit_None.md
index 53b833d37a..e08f728eee 100644
--- a/docs/wiz/Linux_Rider_Gui_NUnit_None.md
+++ b/docs/wiz/Linux_Rider_Gui_NUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/Linux_Rider_Gui_xUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_xUnit_AppVeyor.md
index 324a8f968a..b6f61e60f2 100644
--- a/docs/wiz/Linux_Rider_Gui_xUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_xUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -163,7 +163,7 @@ Tools supported by Linux:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -174,5 +174,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Linux_Rider_Gui_xUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_xUnit_AzureDevOps.md
index 4bcd7c7ba0..5271c3e205 100644
--- a/docs/wiz/Linux_Rider_Gui_xUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_xUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -163,7 +163,7 @@ Tools supported by Linux:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Linux_Rider_Gui_xUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_xUnit_GitHubActions.md
index 3ff7b2d16d..51cd9a5500 100644
--- a/docs/wiz/Linux_Rider_Gui_xUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_xUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -163,7 +163,7 @@ Tools supported by Linux:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Linux_Rider_Gui_xUnit_None.md b/docs/wiz/Linux_Rider_Gui_xUnit_None.md
index d6b207750a..8a498173e1 100644
--- a/docs/wiz/Linux_Rider_Gui_xUnit_None.md
+++ b/docs/wiz/Linux_Rider_Gui_xUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/MacOS_Other_Cli_Expecto_AppVeyor.md b/docs/wiz/MacOS_Other_Cli_Expecto_AppVeyor.md
index 94419ba71f..94616618bd 100644
--- a/docs/wiz/MacOS_Other_Cli_Expecto_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Cli_Expecto_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -166,7 +166,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -177,5 +177,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Other_Cli_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Other_Cli_Expecto_AzureDevOps.md
index 1b729d42cb..badb3d519d 100644
--- a/docs/wiz/MacOS_Other_Cli_Expecto_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Cli_Expecto_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -166,7 +166,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Other_Cli_Expecto_GitHubActions.md b/docs/wiz/MacOS_Other_Cli_Expecto_GitHubActions.md
index 97d377ca2d..17e68bd85f 100644
--- a/docs/wiz/MacOS_Other_Cli_Expecto_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Cli_Expecto_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -166,7 +166,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Other_Cli_Expecto_None.md b/docs/wiz/MacOS_Other_Cli_Expecto_None.md
index 3808b4aa33..ed06803dfa 100644
--- a/docs/wiz/MacOS_Other_Cli_Expecto_None.md
+++ b/docs/wiz/MacOS_Other_Cli_Expecto_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/MacOS_Other_Cli_MSTest_AppVeyor.md b/docs/wiz/MacOS_Other_Cli_MSTest_AppVeyor.md
index e5d4740938..73ae98a06d 100644
--- a/docs/wiz/MacOS_Other_Cli_MSTest_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Cli_MSTest_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -167,7 +167,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -178,5 +178,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Other_Cli_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Other_Cli_MSTest_AzureDevOps.md
index f9b0326e8f..9f86ad34af 100644
--- a/docs/wiz/MacOS_Other_Cli_MSTest_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Cli_MSTest_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -167,7 +167,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Other_Cli_MSTest_GitHubActions.md b/docs/wiz/MacOS_Other_Cli_MSTest_GitHubActions.md
index c238c306da..dc13d66098 100644
--- a/docs/wiz/MacOS_Other_Cli_MSTest_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Cli_MSTest_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -167,7 +167,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Other_Cli_MSTest_None.md b/docs/wiz/MacOS_Other_Cli_MSTest_None.md
index ccf5d9fffd..ab66a6d683 100644
--- a/docs/wiz/MacOS_Other_Cli_MSTest_None.md
+++ b/docs/wiz/MacOS_Other_Cli_MSTest_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/MacOS_Other_Cli_NUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Cli_NUnit_AppVeyor.md
index 8849ac1115..d88b87be44 100644
--- a/docs/wiz/MacOS_Other_Cli_NUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Cli_NUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -166,7 +166,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -177,5 +177,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Other_Cli_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Cli_NUnit_AzureDevOps.md
index 9fc829c702..51f5290be3 100644
--- a/docs/wiz/MacOS_Other_Cli_NUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Cli_NUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -166,7 +166,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Other_Cli_NUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Cli_NUnit_GitHubActions.md
index c4d66dee81..032d2676a5 100644
--- a/docs/wiz/MacOS_Other_Cli_NUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Cli_NUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -166,7 +166,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Other_Cli_NUnit_None.md b/docs/wiz/MacOS_Other_Cli_NUnit_None.md
index 8c5d932632..5c11797e50 100644
--- a/docs/wiz/MacOS_Other_Cli_NUnit_None.md
+++ b/docs/wiz/MacOS_Other_Cli_NUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/MacOS_Other_Cli_xUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Cli_xUnit_AppVeyor.md
index 51dc8d11c3..643d5d1824 100644
--- a/docs/wiz/MacOS_Other_Cli_xUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Cli_xUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -166,7 +166,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -177,5 +177,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Other_Cli_xUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Cli_xUnit_AzureDevOps.md
index 325b9b619d..fd210d5212 100644
--- a/docs/wiz/MacOS_Other_Cli_xUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Cli_xUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -166,7 +166,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Other_Cli_xUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Cli_xUnit_GitHubActions.md
index 7b8e2d0f64..46316cb0c9 100644
--- a/docs/wiz/MacOS_Other_Cli_xUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Cli_xUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -166,7 +166,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Other_Cli_xUnit_None.md b/docs/wiz/MacOS_Other_Cli_xUnit_None.md
index 9e09d2dae0..686e6d90fe 100644
--- a/docs/wiz/MacOS_Other_Cli_xUnit_None.md
+++ b/docs/wiz/MacOS_Other_Cli_xUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md
index 6a6b51b36e..809acbb2f1 100644
--- a/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -171,5 +171,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md
index d7b97b65b3..00132fa138 100644
--- a/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md
index d52ea07544..9efdc6df10 100644
--- a/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_None.md b/docs/wiz/MacOS_Other_Gui_Expecto_None.md
index d899403898..472b9ecc80 100644
--- a/docs/wiz/MacOS_Other_Gui_Expecto_None.md
+++ b/docs/wiz/MacOS_Other_Gui_Expecto_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md
index be8e623d2d..234cb9de2f 100644
--- a/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -161,7 +161,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -172,5 +172,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md
index f68b358ce2..f67f73bedc 100644
--- a/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -161,7 +161,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md
index c54379beaf..fb06aadb9d 100644
--- a/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -161,7 +161,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_None.md b/docs/wiz/MacOS_Other_Gui_MSTest_None.md
index 8515af19be..b00e25ea72 100644
--- a/docs/wiz/MacOS_Other_Gui_MSTest_None.md
+++ b/docs/wiz/MacOS_Other_Gui_MSTest_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md
index 8e25f0a8da..60cdec008c 100644
--- a/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -171,5 +171,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md
index dea54f68f4..840c145367 100644
--- a/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md
index 06c0aee638..c812301363 100644
--- a/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_None.md b/docs/wiz/MacOS_Other_Gui_NUnit_None.md
index 71bf940e5a..ea60cd0611 100644
--- a/docs/wiz/MacOS_Other_Gui_NUnit_None.md
+++ b/docs/wiz/MacOS_Other_Gui_NUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/MacOS_Other_Gui_xUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_xUnit_AppVeyor.md
index 0990f44ec9..eae12179dd 100644
--- a/docs/wiz/MacOS_Other_Gui_xUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_xUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -171,5 +171,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Other_Gui_xUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_xUnit_AzureDevOps.md
index 3bc3909935..afc4830259 100644
--- a/docs/wiz/MacOS_Other_Gui_xUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_xUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Other_Gui_xUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_xUnit_GitHubActions.md
index fe8fe7f350..85226c685a 100644
--- a/docs/wiz/MacOS_Other_Gui_xUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_xUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
@@ -160,7 +160,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Other_Gui_xUnit_None.md b/docs/wiz/MacOS_Other_Gui_xUnit_None.md
index 58b446d5dd..67cdba4335 100644
--- a/docs/wiz/MacOS_Other_Gui_xUnit_None.md
+++ b/docs/wiz/MacOS_Other_Gui_xUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffPlex
diff --git a/docs/wiz/MacOS_Rider_Cli_Expecto_AppVeyor.md b/docs/wiz/MacOS_Rider_Cli_Expecto_AppVeyor.md
index 697eb2763e..62c9feaf8e 100644
--- a/docs/wiz/MacOS_Rider_Cli_Expecto_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Cli_Expecto_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -175,7 +175,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -186,5 +186,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Rider_Cli_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Rider_Cli_Expecto_AzureDevOps.md
index c0e953da5f..cffe62208e 100644
--- a/docs/wiz/MacOS_Rider_Cli_Expecto_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Cli_Expecto_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -175,7 +175,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Rider_Cli_Expecto_GitHubActions.md b/docs/wiz/MacOS_Rider_Cli_Expecto_GitHubActions.md
index 39b66a0b6e..aff47743ff 100644
--- a/docs/wiz/MacOS_Rider_Cli_Expecto_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Cli_Expecto_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -175,7 +175,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Rider_Cli_Expecto_None.md b/docs/wiz/MacOS_Rider_Cli_Expecto_None.md
index 76e78dd20b..332e541241 100644
--- a/docs/wiz/MacOS_Rider_Cli_Expecto_None.md
+++ b/docs/wiz/MacOS_Rider_Cli_Expecto_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/MacOS_Rider_Cli_MSTest_AppVeyor.md b/docs/wiz/MacOS_Rider_Cli_MSTest_AppVeyor.md
index 267f5f7960..3950feea94 100644
--- a/docs/wiz/MacOS_Rider_Cli_MSTest_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Cli_MSTest_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -176,7 +176,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -187,5 +187,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Rider_Cli_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Rider_Cli_MSTest_AzureDevOps.md
index acf8f3eb56..dcae51a9e0 100644
--- a/docs/wiz/MacOS_Rider_Cli_MSTest_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Cli_MSTest_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -176,7 +176,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Rider_Cli_MSTest_GitHubActions.md b/docs/wiz/MacOS_Rider_Cli_MSTest_GitHubActions.md
index 2eaba82332..0159699d2d 100644
--- a/docs/wiz/MacOS_Rider_Cli_MSTest_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Cli_MSTest_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -176,7 +176,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Rider_Cli_MSTest_None.md b/docs/wiz/MacOS_Rider_Cli_MSTest_None.md
index e3e88c6a6b..cc4a6e208f 100644
--- a/docs/wiz/MacOS_Rider_Cli_MSTest_None.md
+++ b/docs/wiz/MacOS_Rider_Cli_MSTest_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/MacOS_Rider_Cli_NUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Cli_NUnit_AppVeyor.md
index 68b1e520c4..acbffd2af1 100644
--- a/docs/wiz/MacOS_Rider_Cli_NUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Cli_NUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -175,7 +175,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -186,5 +186,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Rider_Cli_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Cli_NUnit_AzureDevOps.md
index 1e2c3586b2..0b44236c31 100644
--- a/docs/wiz/MacOS_Rider_Cli_NUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Cli_NUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -175,7 +175,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Rider_Cli_NUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Cli_NUnit_GitHubActions.md
index 9226e999e0..03b082fe89 100644
--- a/docs/wiz/MacOS_Rider_Cli_NUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Cli_NUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -175,7 +175,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Rider_Cli_NUnit_None.md b/docs/wiz/MacOS_Rider_Cli_NUnit_None.md
index 00d117b22e..cef5198d8a 100644
--- a/docs/wiz/MacOS_Rider_Cli_NUnit_None.md
+++ b/docs/wiz/MacOS_Rider_Cli_NUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/MacOS_Rider_Cli_xUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Cli_xUnit_AppVeyor.md
index 255c633427..f7c750f21f 100644
--- a/docs/wiz/MacOS_Rider_Cli_xUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Cli_xUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -175,7 +175,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -186,5 +186,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Rider_Cli_xUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Cli_xUnit_AzureDevOps.md
index 51ce52bf84..140f10fc96 100644
--- a/docs/wiz/MacOS_Rider_Cli_xUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Cli_xUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -175,7 +175,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Rider_Cli_xUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Cli_xUnit_GitHubActions.md
index 56da1ac6b3..c617cb2e40 100644
--- a/docs/wiz/MacOS_Rider_Cli_xUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Cli_xUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -175,7 +175,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Rider_Cli_xUnit_None.md b/docs/wiz/MacOS_Rider_Cli_xUnit_None.md
index 04e2620d09..e29efb56e7 100644
--- a/docs/wiz/MacOS_Rider_Cli_xUnit_None.md
+++ b/docs/wiz/MacOS_Rider_Cli_xUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md
index 015091d912..0f3cc27bdd 100644
--- a/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -180,5 +180,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md
index d5e716c43c..526d7fbfad 100644
--- a/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md
index 2261a3151e..c4bff992f9 100644
--- a/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_None.md b/docs/wiz/MacOS_Rider_Gui_Expecto_None.md
index 3df5f58e10..1a8f570af8 100644
--- a/docs/wiz/MacOS_Rider_Gui_Expecto_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_Expecto_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md
index faa8d928db..6e45389e15 100644
--- a/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -170,7 +170,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -181,5 +181,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md
index b654ac0922..eb755ce131 100644
--- a/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -170,7 +170,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md
index 211da82dff..530350298f 100644
--- a/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -170,7 +170,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_None.md b/docs/wiz/MacOS_Rider_Gui_MSTest_None.md
index 22a03370c8..5a0be0bdf8 100644
--- a/docs/wiz/MacOS_Rider_Gui_MSTest_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_MSTest_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md
index 71529719aa..f692f80014 100644
--- a/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -180,5 +180,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md
index 972e5cd9ee..499d3d75f6 100644
--- a/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md
index 16d3a62e9d..1152bae509 100644
--- a/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_None.md b/docs/wiz/MacOS_Rider_Gui_NUnit_None.md
index 1a182ec1fe..1f1bff795d 100644
--- a/docs/wiz/MacOS_Rider_Gui_NUnit_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_NUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/MacOS_Rider_Gui_xUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_xUnit_AppVeyor.md
index 88107c9ff7..16b168ef60 100644
--- a/docs/wiz/MacOS_Rider_Gui_xUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_xUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by MacOS:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -180,5 +180,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/MacOS_Rider_Gui_xUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_xUnit_AzureDevOps.md
index 1e2d865ea0..7eb5569dba 100644
--- a/docs/wiz/MacOS_Rider_Gui_xUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_xUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by MacOS:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/MacOS_Rider_Gui_xUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_xUnit_GitHubActions.md
index 08e3e43e56..663a33a2fd 100644
--- a/docs/wiz/MacOS_Rider_Gui_xUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_xUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
@@ -169,7 +169,7 @@ Tools supported by MacOS:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/MacOS_Rider_Gui_xUnit_None.md b/docs/wiz/MacOS_Rider_Gui_xUnit_None.md
index 9603e4fc81..557d2a7371 100644
--- a/docs/wiz/MacOS_Rider_Gui_xUnit_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_xUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Rider Plugin
diff --git a/docs/wiz/Windows_Other_Cli_Expecto_AppVeyor.md b/docs/wiz/Windows_Other_Cli_Expecto_AppVeyor.md
index 4680a6ebd1..41d9483820 100644
--- a/docs/wiz/Windows_Other_Cli_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Cli_Expecto_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -195,5 +195,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Other_Cli_Expecto_AzureDevOps.md b/docs/wiz/Windows_Other_Cli_Expecto_AzureDevOps.md
index f0294c4ec1..08276c90ff 100644
--- a/docs/wiz/Windows_Other_Cli_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Cli_Expecto_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Other_Cli_Expecto_GitHubActions.md b/docs/wiz/Windows_Other_Cli_Expecto_GitHubActions.md
index af435ba783..0db9758961 100644
--- a/docs/wiz/Windows_Other_Cli_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Cli_Expecto_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Other_Cli_Expecto_None.md b/docs/wiz/Windows_Other_Cli_Expecto_None.md
index 1373270d5e..4de8e98036 100644
--- a/docs/wiz/Windows_Other_Cli_Expecto_None.md
+++ b/docs/wiz/Windows_Other_Cli_Expecto_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Other_Cli_MSTest_AppVeyor.md b/docs/wiz/Windows_Other_Cli_MSTest_AppVeyor.md
index 4b1603369b..7a1b427f84 100644
--- a/docs/wiz/Windows_Other_Cli_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Cli_MSTest_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -185,7 +185,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -196,5 +196,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Other_Cli_MSTest_AzureDevOps.md b/docs/wiz/Windows_Other_Cli_MSTest_AzureDevOps.md
index b03d881612..a58dc8b6c2 100644
--- a/docs/wiz/Windows_Other_Cli_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Cli_MSTest_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -185,7 +185,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Other_Cli_MSTest_GitHubActions.md b/docs/wiz/Windows_Other_Cli_MSTest_GitHubActions.md
index e0a1abd6a4..2d046deca6 100644
--- a/docs/wiz/Windows_Other_Cli_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Cli_MSTest_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -185,7 +185,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Other_Cli_MSTest_None.md b/docs/wiz/Windows_Other_Cli_MSTest_None.md
index 0e039a95ec..6f111a356f 100644
--- a/docs/wiz/Windows_Other_Cli_MSTest_None.md
+++ b/docs/wiz/Windows_Other_Cli_MSTest_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Other_Cli_NUnit_AppVeyor.md b/docs/wiz/Windows_Other_Cli_NUnit_AppVeyor.md
index 2752b522ea..f6bc9168ce 100644
--- a/docs/wiz/Windows_Other_Cli_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Cli_NUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -195,5 +195,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Other_Cli_NUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Cli_NUnit_AzureDevOps.md
index 465a5df2c8..d1d2c1647f 100644
--- a/docs/wiz/Windows_Other_Cli_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Cli_NUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Other_Cli_NUnit_GitHubActions.md b/docs/wiz/Windows_Other_Cli_NUnit_GitHubActions.md
index a759c35a77..a0eb36d1f5 100644
--- a/docs/wiz/Windows_Other_Cli_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Cli_NUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Other_Cli_NUnit_None.md b/docs/wiz/Windows_Other_Cli_NUnit_None.md
index 7418c5b313..2822b59fcc 100644
--- a/docs/wiz/Windows_Other_Cli_NUnit_None.md
+++ b/docs/wiz/Windows_Other_Cli_NUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Other_Cli_xUnit_AppVeyor.md b/docs/wiz/Windows_Other_Cli_xUnit_AppVeyor.md
index f93b74cef0..bc6071e783 100644
--- a/docs/wiz/Windows_Other_Cli_xUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Cli_xUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -195,5 +195,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Other_Cli_xUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Cli_xUnit_AzureDevOps.md
index d259d567ff..9c102f4962 100644
--- a/docs/wiz/Windows_Other_Cli_xUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Cli_xUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Other_Cli_xUnit_GitHubActions.md b/docs/wiz/Windows_Other_Cli_xUnit_GitHubActions.md
index c5cd39f639..104eb7a2cd 100644
--- a/docs/wiz/Windows_Other_Cli_xUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Cli_xUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Other_Cli_xUnit_None.md b/docs/wiz/Windows_Other_Cli_xUnit_None.md
index 6b7be628b1..5e0b0d20b5 100644
--- a/docs/wiz/Windows_Other_Cli_xUnit_None.md
+++ b/docs/wiz/Windows_Other_Cli_xUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md
index d6e2565a1c..4852d39107 100644
--- a/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -189,5 +189,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md
index 47c712c552..6670af3b52 100644
--- a/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md
index 421fc93bc4..b6251a7245 100644
--- a/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Other_Gui_Expecto_None.md b/docs/wiz/Windows_Other_Gui_Expecto_None.md
index bc9a0e17a0..c5b1982300 100644
--- a/docs/wiz/Windows_Other_Gui_Expecto_None.md
+++ b/docs/wiz/Windows_Other_Gui_Expecto_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md
index 4f476ebf28..c541b0a924 100644
--- a/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -179,7 +179,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -190,5 +190,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md
index 3e7e2be1cf..1b7bea3fbe 100644
--- a/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -179,7 +179,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md
index dc28f78fba..191e0722da 100644
--- a/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -179,7 +179,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Other_Gui_MSTest_None.md b/docs/wiz/Windows_Other_Gui_MSTest_None.md
index 6906b0e54f..909a549815 100644
--- a/docs/wiz/Windows_Other_Gui_MSTest_None.md
+++ b/docs/wiz/Windows_Other_Gui_MSTest_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md
index 4f9404a8b8..17a708b458 100644
--- a/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -189,5 +189,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md
index 8d0158e255..e756980064 100644
--- a/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md
index 0e965eaaa2..4f691f3065 100644
--- a/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Other_Gui_NUnit_None.md b/docs/wiz/Windows_Other_Gui_NUnit_None.md
index 20d3bceb2e..63cca8cefe 100644
--- a/docs/wiz/Windows_Other_Gui_NUnit_None.md
+++ b/docs/wiz/Windows_Other_Gui_NUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Other_Gui_xUnit_AppVeyor.md b/docs/wiz/Windows_Other_Gui_xUnit_AppVeyor.md
index ac4a1f1776..76c9de0041 100644
--- a/docs/wiz/Windows_Other_Gui_xUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_xUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -189,5 +189,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Other_Gui_xUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_xUnit_AzureDevOps.md
index 68185eafc0..6b97b046a4 100644
--- a/docs/wiz/Windows_Other_Gui_xUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_xUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Other_Gui_xUnit_GitHubActions.md b/docs/wiz/Windows_Other_Gui_xUnit_GitHubActions.md
index 071c6e3b39..078eb99626 100644
--- a/docs/wiz/Windows_Other_Gui_xUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_xUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Other_Gui_xUnit_None.md b/docs/wiz/Windows_Other_Gui_xUnit_None.md
index 6b206d7292..1c6e998e35 100644
--- a/docs/wiz/Windows_Other_Gui_xUnit_None.md
+++ b/docs/wiz/Windows_Other_Gui_xUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Rider_Cli_Expecto_AppVeyor.md b/docs/wiz/Windows_Rider_Cli_Expecto_AppVeyor.md
index 4e68c82f05..3d641c9904 100644
--- a/docs/wiz/Windows_Rider_Cli_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Cli_Expecto_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -204,5 +204,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Rider_Cli_Expecto_AzureDevOps.md b/docs/wiz/Windows_Rider_Cli_Expecto_AzureDevOps.md
index 84ef8ab84d..b771e41c2b 100644
--- a/docs/wiz/Windows_Rider_Cli_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Cli_Expecto_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Rider_Cli_Expecto_GitHubActions.md b/docs/wiz/Windows_Rider_Cli_Expecto_GitHubActions.md
index 21b8a9cb88..9c0e3e8f0f 100644
--- a/docs/wiz/Windows_Rider_Cli_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Cli_Expecto_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Rider_Cli_Expecto_None.md b/docs/wiz/Windows_Rider_Cli_Expecto_None.md
index 907733af36..57b3e9af81 100644
--- a/docs/wiz/Windows_Rider_Cli_Expecto_None.md
+++ b/docs/wiz/Windows_Rider_Cli_Expecto_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Rider_Cli_MSTest_AppVeyor.md b/docs/wiz/Windows_Rider_Cli_MSTest_AppVeyor.md
index 8094065123..8af7ac7f69 100644
--- a/docs/wiz/Windows_Rider_Cli_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Cli_MSTest_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -194,7 +194,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -205,5 +205,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Rider_Cli_MSTest_AzureDevOps.md b/docs/wiz/Windows_Rider_Cli_MSTest_AzureDevOps.md
index f0130dc576..b2a46f7ec2 100644
--- a/docs/wiz/Windows_Rider_Cli_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Cli_MSTest_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -194,7 +194,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Rider_Cli_MSTest_GitHubActions.md b/docs/wiz/Windows_Rider_Cli_MSTest_GitHubActions.md
index 1559408387..6632af3655 100644
--- a/docs/wiz/Windows_Rider_Cli_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Cli_MSTest_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -194,7 +194,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Rider_Cli_MSTest_None.md b/docs/wiz/Windows_Rider_Cli_MSTest_None.md
index 6d11989348..357dc51f8d 100644
--- a/docs/wiz/Windows_Rider_Cli_MSTest_None.md
+++ b/docs/wiz/Windows_Rider_Cli_MSTest_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Rider_Cli_NUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Cli_NUnit_AppVeyor.md
index a0ec02bfa9..04d684f4bc 100644
--- a/docs/wiz/Windows_Rider_Cli_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Cli_NUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -204,5 +204,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Rider_Cli_NUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Cli_NUnit_AzureDevOps.md
index f3617229dc..e4a31636cd 100644
--- a/docs/wiz/Windows_Rider_Cli_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Cli_NUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Rider_Cli_NUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Cli_NUnit_GitHubActions.md
index 8f3d5eb8a1..34007ee593 100644
--- a/docs/wiz/Windows_Rider_Cli_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Cli_NUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Rider_Cli_NUnit_None.md b/docs/wiz/Windows_Rider_Cli_NUnit_None.md
index cbdfc653ea..83c937cb16 100644
--- a/docs/wiz/Windows_Rider_Cli_NUnit_None.md
+++ b/docs/wiz/Windows_Rider_Cli_NUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Rider_Cli_xUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Cli_xUnit_AppVeyor.md
index dea7ab9bc4..09c4c776c2 100644
--- a/docs/wiz/Windows_Rider_Cli_xUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Cli_xUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -204,5 +204,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Rider_Cli_xUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Cli_xUnit_AzureDevOps.md
index d7cf44a536..b5fe96a911 100644
--- a/docs/wiz/Windows_Rider_Cli_xUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Cli_xUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Rider_Cli_xUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Cli_xUnit_GitHubActions.md
index 6efbb7db36..73c757f3b7 100644
--- a/docs/wiz/Windows_Rider_Cli_xUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Cli_xUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Rider_Cli_xUnit_None.md b/docs/wiz/Windows_Rider_Cli_xUnit_None.md
index ed30665d4e..667b2536eb 100644
--- a/docs/wiz/Windows_Rider_Cli_xUnit_None.md
+++ b/docs/wiz/Windows_Rider_Cli_xUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md
index ddd1b66f1e..7d43848f40 100644
--- a/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -198,5 +198,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md
index b4e5ac4df3..2fd9120d97 100644
--- a/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md
index 90b2fa6255..6daec54f75 100644
--- a/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_None.md b/docs/wiz/Windows_Rider_Gui_Expecto_None.md
index 7e364f8b0b..2f929031da 100644
--- a/docs/wiz/Windows_Rider_Gui_Expecto_None.md
+++ b/docs/wiz/Windows_Rider_Gui_Expecto_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md
index 4534fd7dc7..b0c12a24f4 100644
--- a/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -188,7 +188,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -199,5 +199,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md
index 5a0a2220f4..efc93c3500 100644
--- a/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -188,7 +188,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md
index d55aa0582c..995edfb9ae 100644
--- a/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -188,7 +188,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_None.md b/docs/wiz/Windows_Rider_Gui_MSTest_None.md
index ff87746bfb..a549a702b1 100644
--- a/docs/wiz/Windows_Rider_Gui_MSTest_None.md
+++ b/docs/wiz/Windows_Rider_Gui_MSTest_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md
index 5a2291c606..bada4863ee 100644
--- a/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -198,5 +198,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md
index 36343404d4..7c670bf170 100644
--- a/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md
index 8d7efd672e..49803329e7 100644
--- a/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_None.md b/docs/wiz/Windows_Rider_Gui_NUnit_None.md
index bb8dace4da..7cbebefcfb 100644
--- a/docs/wiz/Windows_Rider_Gui_NUnit_None.md
+++ b/docs/wiz/Windows_Rider_Gui_NUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_Rider_Gui_xUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_xUnit_AppVeyor.md
index d7f860ec2c..4c909b1bf5 100644
--- a/docs/wiz/Windows_Rider_Gui_xUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_xUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -198,5 +198,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_Rider_Gui_xUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_xUnit_AzureDevOps.md
index 6f8834798c..6e15294235 100644
--- a/docs/wiz/Windows_Rider_Gui_xUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_xUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_Rider_Gui_xUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_xUnit_GitHubActions.md
index 7a92c7b30b..38a555c446 100644
--- a/docs/wiz/Windows_Rider_Gui_xUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_xUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_Rider_Gui_xUnit_None.md b/docs/wiz/Windows_Rider_Gui_xUnit_None.md
index 623d142fa7..eb24bd9d9f 100644
--- a/docs/wiz/Windows_Rider_Gui_xUnit_None.md
+++ b/docs/wiz/Windows_Rider_Gui_xUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_AppVeyor.md
index 226a9a103e..04412be955 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -204,5 +204,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_AzureDevOps.md
index 3e4c74c051..77e64e5221 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_GitHubActions.md
index 3962e3d495..921b55b957 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_None.md
index c9b87cf107..09b27bd1f3 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_AppVeyor.md
index 41c66ecc13..fe6f519d20 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -194,7 +194,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -205,5 +205,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_AzureDevOps.md
index a6c9b39567..b71c40f62b 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -194,7 +194,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_GitHubActions.md
index 288c3c2aa2..cbfc1a5a6f 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -194,7 +194,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_None.md
index 936109ab4f..c90dca00ae 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_MSTest_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_AppVeyor.md
index 159785d1cc..44b9dd8615 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -204,5 +204,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_AzureDevOps.md
index 32e0ae828b..8be861f29d 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_GitHubActions.md
index a34fc4b518..af8f4fd6d9 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_None.md
index 94af6b5ebb..0de7fc9bad 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_NUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_AppVeyor.md
index 16b0061e21..dfe60d374a 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -204,5 +204,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_AzureDevOps.md
index e1f5920152..7d59cec946 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_GitHubActions.md
index a1d429c0b8..4527e871f0 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -193,7 +193,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_None.md
index 28802a93cf..dd039f8f6d 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_xUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md
index 22de4c2838..7ae6325233 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -198,5 +198,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md
index 84fe19f45a..430cf5d02b 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md
index bd7a3e56f4..de853e7957 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md
index 0bda06e779..af9507e64b 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md
index 020cb1e112..920b94e034 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -188,7 +188,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -199,5 +199,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md
index 4d47a3f992..b4c31b4343 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -188,7 +188,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md
index b38a65b4aa..470505f9e5 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -188,7 +188,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md
index 3273b50664..18dc28917f 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md
index 28be665421..82ef21b39d 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -198,5 +198,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md
index 790598998c..0bd7c99a3b 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md
index ff6f41ac9a..92f377610f 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md
index ef3470f23a..83ebf322c3 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_AppVeyor.md
index 09bfc0082e..d2b119d003 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -198,5 +198,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_AzureDevOps.md
index ece22b5768..32032737e1 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_GitHubActions.md
index 06464115b9..aa0a2e9f71 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -187,7 +187,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_None.md
index badc910e3c..5e1995705b 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudio_Cli_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Cli_Expecto_AppVeyor.md
index 476e716d47..75e5dcfe1f 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_Expecto_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -195,5 +195,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudio_Cli_Expecto_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Cli_Expecto_AzureDevOps.md
index 04a126cefb..04a5e8ae34 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_Expecto_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudio_Cli_Expecto_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Cli_Expecto_GitHubActions.md
index 1700e77bc1..3a17b7cba5 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_Expecto_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudio_Cli_Expecto_None.md b/docs/wiz/Windows_VisualStudio_Cli_Expecto_None.md
index acdcc3f375..f3a45b389b 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_Expecto_None.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_Expecto_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.Expecto
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudio_Cli_MSTest_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Cli_MSTest_AppVeyor.md
index cda7cab6e6..5b26ecce8e 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_MSTest_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -185,7 +185,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -196,5 +196,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudio_Cli_MSTest_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Cli_MSTest_AzureDevOps.md
index 78ae8125e3..726c2dc3cc 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_MSTest_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -185,7 +185,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudio_Cli_MSTest_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Cli_MSTest_GitHubActions.md
index a6d03a9fbc..c3b952b0ed 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_MSTest_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -185,7 +185,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudio_Cli_MSTest_None.md b/docs/wiz/Windows_VisualStudio_Cli_MSTest_None.md
index 4be790e804..02098e0b28 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_MSTest_None.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_MSTest_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.MSTest
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudio_Cli_NUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Cli_NUnit_AppVeyor.md
index ba0c4527b2..c4721adf35 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_NUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -195,5 +195,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudio_Cli_NUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Cli_NUnit_AzureDevOps.md
index 06733dfebf..8ebf86b872 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_NUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudio_Cli_NUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Cli_NUnit_GitHubActions.md
index 5bc750a704..aabfa5bc5c 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_NUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudio_Cli_NUnit_None.md b/docs/wiz/Windows_VisualStudio_Cli_NUnit_None.md
index ddd1aa69ed..8ac6f8c1e8 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_NUnit_None.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_NUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package Verify.NUnit
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudio_Cli_xUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Cli_xUnit_AppVeyor.md
index 02c8924cae..25314cbbd6 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_xUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_xUnit_AppVeyor.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -195,5 +195,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudio_Cli_xUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Cli_xUnit_AzureDevOps.md
index 8bbec9a97a..344ef35fee 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_xUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_xUnit_AzureDevOps.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudio_Cli_xUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Cli_xUnit_GitHubActions.md
index 6de95daa3e..70de3ccfb9 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_xUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_xUnit_GitHubActions.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -184,7 +184,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudio_Cli_xUnit_None.md b/docs/wiz/Windows_VisualStudio_Cli_xUnit_None.md
index df0e7c07cb..208a0464a9 100644
--- a/docs/wiz/Windows_VisualStudio_Cli_xUnit_None.md
+++ b/docs/wiz/Windows_VisualStudio_Cli_xUnit_None.md
@@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -89,7 +89,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md
index 555cfda0e2..69880d7c8f 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -189,5 +189,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md
index fbd2de57bf..cfe56c727e 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md
index ecccac9401..2f396378c4 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md
index 87e4210403..61ffc54d82 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md
index fa5b668b30..55df9ecde1 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -179,7 +179,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -190,5 +190,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md
index adcc618cd1..512a8bd91a 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -179,7 +179,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md
index 610b9b9f96..71ece7e688 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -179,7 +179,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md
index c4d2f7f0bb..498684aa42 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md
index 36bb030fe6..022f38b37a 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -189,5 +189,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md
index 99b2ad2cf3..96d176b600 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md
index f0b4accb0c..59680c985a 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md
index 2bb8273af7..dff8771d4f 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/docs/wiz/Windows_VisualStudio_Gui_xUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_xUnit_AppVeyor.md
index b0f26f83d1..45d6cb6067 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_xUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_xUnit_AppVeyor.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on AppVeyor
-Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
+Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact).
@@ -189,5 +189,5 @@ on_failure:
snippet source | anchor
-See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
+See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts).
diff --git a/docs/wiz/Windows_VisualStudio_Gui_xUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_xUnit_AzureDevOps.md
index 140fcfa34c..72174f91fb 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_xUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_xUnit_AzureDevOps.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on Azure DevOps
-Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
+Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below.
```yaml
- task: CmdLine@2
diff --git a/docs/wiz/Windows_VisualStudio_Gui_xUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_xUnit_GitHubActions.md
index 762d49d683..3be26c592e 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_xUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_xUnit_GitHubActions.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
@@ -178,7 +178,7 @@ Tools supported by Windows:
## Getting .received in output on GitHub Actions
-Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
+Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails.
```yaml
- name: Upload Test Results
diff --git a/docs/wiz/Windows_VisualStudio_Gui_xUnit_None.md b/docs/wiz/Windows_VisualStudio_Gui_xUnit_None.md
index 605f98808e..d3c4db7be2 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_xUnit_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_xUnit_None.md
@@ -28,16 +28,16 @@ Add the following packages to the test project:
## Implicit Usings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
## Source Control
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
### Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -95,7 +95,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## DiffEngineTray
diff --git a/readme.md b/readme.md
index c59c3652b9..688eaae13b 100644
--- a/readme.md
+++ b/readme.md
@@ -53,9 +53,9 @@ Accepting or declining a snapshot file is part of the core workflow of Verify. T
### ImplicitUsings
-**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
+**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`**
-If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
+If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`.
### Class being tested
@@ -373,7 +373,7 @@ Results in:
### Includes/Excludes
- * **All `*.received.*` files should be excluded from source control.**
+ * **All `*.received.*` files should be excluded from source control.**
eg. add the following to `.gitignore`
@@ -386,12 +386,12 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued
`*.received/`
-All `*.verified.*` files should be committed to source control.
+All `*.verified.*` files should be committed to source control.
## Text file settings
-Text variants of verified and received have the following characteristics:
+Text variants of verified and received have the following characteristics:
* UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark)
* Newlines as line-feed (lf)
@@ -432,7 +432,7 @@ trim_trailing_whitespace = false
```
-*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
+*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.*
## Static settings
@@ -629,7 +629,7 @@ Nick Chapsas (1 Aug 2022)](https://www.youtube.com/watch?v=Q1_YkcPwpqY)
## More Documentation
- * [Clipboard](/docs/clipboard.md)
+ * [Clipboard](/docs/clipboard.md)
* [Compared to assertions](/docs/compared-to-assertion.md)
* [Verify options](/docs/verify-options.md)
* [VerifyDirectory](/docs/verify-directory.md)
@@ -653,7 +653,7 @@ Nick Chapsas (1 Aug 2022)](https://www.youtube.com/watch?v=Q1_YkcPwpqY)
* [Converters](/docs/converter.md)
* [Explicit Targets](/docs/explicit-targets.md)
* [FSharp Usage](/docs/fsharp.md)
- * [Compared to ApprovalTests](/docs/compared-to-approvaltests.md)
+ * [Compared to ApprovalTests](/docs/compared-to-approvaltests.md)
## Icon