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_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