diff --git a/docs/build-server.md b/docs/build-server.md index 4eedcd033a..9434f16e3d 100644 --- a/docs/build-server.md +++ b/docs/build-server.md @@ -13,7 +13,7 @@ To change this file edit the source file and then run MarkdownSnippets. ### AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -24,12 +24,12 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). ### GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results @@ -45,7 +45,7 @@ Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/re ### Azure DevOps YAML Pipeline -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/readme.md b/docs/readme.md index acbd0c35bd..d8953fca17 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -7,7 +7,7 @@ To change this file edit the source file and then run MarkdownSnippets. # Documentation - * [Clipboard](/docs/clipboard.md) + * [Clipboard](/docs/clipboard.md) * [Compared to assertions](/docs/compared-to-assertion.md) * [Verify options](/docs/verify-options.md) * [VerifyDirectory](/docs/verify-directory.md) @@ -31,4 +31,4 @@ To change this file edit the source file and then run MarkdownSnippets. * [Converters](/docs/converter.md) * [Explicit Targets](/docs/explicit-targets.md) * [FSharp Usage](/docs/fsharp.md) - * [Compared to ApprovalTests](/docs/compared-to-approvaltests.md) + * [Compared to ApprovalTests](/docs/compared-to-approvaltests.md) diff --git a/docs/wiz/Linux_Other_Cli_Expecto_AppVeyor.md b/docs/wiz/Linux_Other_Cli_Expecto_AppVeyor.md index 1439f415b9..7a3585951a 100644 --- a/docs/wiz/Linux_Other_Cli_Expecto_AppVeyor.md +++ b/docs/wiz/Linux_Other_Cli_Expecto_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -171,5 +171,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Other_Cli_Expecto_AzureDevOps.md b/docs/wiz/Linux_Other_Cli_Expecto_AzureDevOps.md index 618b6f990a..f8fcf009e4 100644 --- a/docs/wiz/Linux_Other_Cli_Expecto_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Cli_Expecto_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Other_Cli_Expecto_GitHubActions.md b/docs/wiz/Linux_Other_Cli_Expecto_GitHubActions.md index 827a02b82c..ea99e8a96a 100644 --- a/docs/wiz/Linux_Other_Cli_Expecto_GitHubActions.md +++ b/docs/wiz/Linux_Other_Cli_Expecto_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Other_Cli_Expecto_None.md b/docs/wiz/Linux_Other_Cli_Expecto_None.md index 2f3fc7dd64..34167fcb3d 100644 --- a/docs/wiz/Linux_Other_Cli_Expecto_None.md +++ b/docs/wiz/Linux_Other_Cli_Expecto_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/Linux_Other_Cli_MSTest_AppVeyor.md b/docs/wiz/Linux_Other_Cli_MSTest_AppVeyor.md index 985eda1dfe..4fb71667da 100644 --- a/docs/wiz/Linux_Other_Cli_MSTest_AppVeyor.md +++ b/docs/wiz/Linux_Other_Cli_MSTest_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -161,7 +161,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -172,5 +172,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Other_Cli_MSTest_AzureDevOps.md b/docs/wiz/Linux_Other_Cli_MSTest_AzureDevOps.md index dd6c49a655..3f7d1b498f 100644 --- a/docs/wiz/Linux_Other_Cli_MSTest_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Cli_MSTest_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -161,7 +161,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Other_Cli_MSTest_GitHubActions.md b/docs/wiz/Linux_Other_Cli_MSTest_GitHubActions.md index ed28aa0647..53bacf681b 100644 --- a/docs/wiz/Linux_Other_Cli_MSTest_GitHubActions.md +++ b/docs/wiz/Linux_Other_Cli_MSTest_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -161,7 +161,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Other_Cli_MSTest_None.md b/docs/wiz/Linux_Other_Cli_MSTest_None.md index fb4851cfe8..7de71073da 100644 --- a/docs/wiz/Linux_Other_Cli_MSTest_None.md +++ b/docs/wiz/Linux_Other_Cli_MSTest_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/Linux_Other_Cli_NUnit_AppVeyor.md b/docs/wiz/Linux_Other_Cli_NUnit_AppVeyor.md index 68e6c01fdc..c8b69f6f33 100644 --- a/docs/wiz/Linux_Other_Cli_NUnit_AppVeyor.md +++ b/docs/wiz/Linux_Other_Cli_NUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -171,5 +171,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Other_Cli_NUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Cli_NUnit_AzureDevOps.md index 676ec5bb38..a0c5c012a0 100644 --- a/docs/wiz/Linux_Other_Cli_NUnit_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Cli_NUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Other_Cli_NUnit_GitHubActions.md b/docs/wiz/Linux_Other_Cli_NUnit_GitHubActions.md index 6d9bdb10f6..4ad7e80bef 100644 --- a/docs/wiz/Linux_Other_Cli_NUnit_GitHubActions.md +++ b/docs/wiz/Linux_Other_Cli_NUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Other_Cli_NUnit_None.md b/docs/wiz/Linux_Other_Cli_NUnit_None.md index c9819a4518..7ca84f5376 100644 --- a/docs/wiz/Linux_Other_Cli_NUnit_None.md +++ b/docs/wiz/Linux_Other_Cli_NUnit_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/Linux_Other_Cli_xUnit_AppVeyor.md b/docs/wiz/Linux_Other_Cli_xUnit_AppVeyor.md index be5d0933b2..6bbf695ac7 100644 --- a/docs/wiz/Linux_Other_Cli_xUnit_AppVeyor.md +++ b/docs/wiz/Linux_Other_Cli_xUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -171,5 +171,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Other_Cli_xUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Cli_xUnit_AzureDevOps.md index 150360b2d4..aeace17483 100644 --- a/docs/wiz/Linux_Other_Cli_xUnit_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Cli_xUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Other_Cli_xUnit_GitHubActions.md b/docs/wiz/Linux_Other_Cli_xUnit_GitHubActions.md index a6773fc0da..16f3b6447b 100644 --- a/docs/wiz/Linux_Other_Cli_xUnit_GitHubActions.md +++ b/docs/wiz/Linux_Other_Cli_xUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Other_Cli_xUnit_None.md b/docs/wiz/Linux_Other_Cli_xUnit_None.md index 1b20a6e3bf..52e62198b6 100644 --- a/docs/wiz/Linux_Other_Cli_xUnit_None.md +++ b/docs/wiz/Linux_Other_Cli_xUnit_None.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md index e6e61dd859..854070547f 100644 --- a/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -154,7 +154,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -165,5 +165,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md index f7e0c4ceba..918b5d87a8 100644 --- a/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -154,7 +154,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md index 6b9b6d367a..407201d913 100644 --- a/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -154,7 +154,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Other_Gui_Expecto_None.md b/docs/wiz/Linux_Other_Gui_Expecto_None.md index f7a90da18c..a0ae1fca2f 100644 --- a/docs/wiz/Linux_Other_Gui_Expecto_None.md +++ b/docs/wiz/Linux_Other_Gui_Expecto_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md index a889c0a201..83c6603f7c 100644 --- a/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -155,7 +155,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -166,5 +166,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md index 21eae3a44a..719985e829 100644 --- a/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -155,7 +155,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md index 80e1cc72db..09e2bb489e 100644 --- a/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -155,7 +155,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Other_Gui_MSTest_None.md b/docs/wiz/Linux_Other_Gui_MSTest_None.md index 84e09ae846..c0a3e516f1 100644 --- a/docs/wiz/Linux_Other_Gui_MSTest_None.md +++ b/docs/wiz/Linux_Other_Gui_MSTest_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md index a31d5e5ee1..8d5872125e 100644 --- a/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -154,7 +154,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -165,5 +165,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md index 39fd93594b..f8fbfa03cf 100644 --- a/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -154,7 +154,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md index 52e0b8f073..77eee77951 100644 --- a/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -154,7 +154,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Other_Gui_NUnit_None.md b/docs/wiz/Linux_Other_Gui_NUnit_None.md index ad39cfba3b..2dab3bf7e2 100644 --- a/docs/wiz/Linux_Other_Gui_NUnit_None.md +++ b/docs/wiz/Linux_Other_Gui_NUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/Linux_Other_Gui_xUnit_AppVeyor.md b/docs/wiz/Linux_Other_Gui_xUnit_AppVeyor.md index 86f9521c82..b1cb38ced5 100644 --- a/docs/wiz/Linux_Other_Gui_xUnit_AppVeyor.md +++ b/docs/wiz/Linux_Other_Gui_xUnit_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -154,7 +154,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -165,5 +165,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Other_Gui_xUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_xUnit_AzureDevOps.md index 0b3216f5b9..03411cf25e 100644 --- a/docs/wiz/Linux_Other_Gui_xUnit_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Gui_xUnit_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -154,7 +154,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Other_Gui_xUnit_GitHubActions.md b/docs/wiz/Linux_Other_Gui_xUnit_GitHubActions.md index 868e4179a8..b4be4e8112 100644 --- a/docs/wiz/Linux_Other_Gui_xUnit_GitHubActions.md +++ b/docs/wiz/Linux_Other_Gui_xUnit_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -154,7 +154,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Other_Gui_xUnit_None.md b/docs/wiz/Linux_Other_Gui_xUnit_None.md index 6a36ae08e8..3700d7f028 100644 --- a/docs/wiz/Linux_Other_Gui_xUnit_None.md +++ b/docs/wiz/Linux_Other_Gui_xUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/Linux_Rider_Cli_Expecto_AppVeyor.md b/docs/wiz/Linux_Rider_Cli_Expecto_AppVeyor.md index 5ce18addfc..4545179d0e 100644 --- a/docs/wiz/Linux_Rider_Cli_Expecto_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Cli_Expecto_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -180,5 +180,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Rider_Cli_Expecto_AzureDevOps.md b/docs/wiz/Linux_Rider_Cli_Expecto_AzureDevOps.md index 2411f7a0f1..f58a3c2277 100644 --- a/docs/wiz/Linux_Rider_Cli_Expecto_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Cli_Expecto_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Rider_Cli_Expecto_GitHubActions.md b/docs/wiz/Linux_Rider_Cli_Expecto_GitHubActions.md index bbd5432a8d..58958ba3fe 100644 --- a/docs/wiz/Linux_Rider_Cli_Expecto_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Cli_Expecto_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Rider_Cli_Expecto_None.md b/docs/wiz/Linux_Rider_Cli_Expecto_None.md index 1014c50361..deaa207096 100644 --- a/docs/wiz/Linux_Rider_Cli_Expecto_None.md +++ b/docs/wiz/Linux_Rider_Cli_Expecto_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/Linux_Rider_Cli_MSTest_AppVeyor.md b/docs/wiz/Linux_Rider_Cli_MSTest_AppVeyor.md index a04d4a748b..63a5cc1680 100644 --- a/docs/wiz/Linux_Rider_Cli_MSTest_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Cli_MSTest_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -170,7 +170,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -181,5 +181,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Rider_Cli_MSTest_AzureDevOps.md b/docs/wiz/Linux_Rider_Cli_MSTest_AzureDevOps.md index 6a05f21556..731e0a5f0f 100644 --- a/docs/wiz/Linux_Rider_Cli_MSTest_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Cli_MSTest_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -170,7 +170,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Rider_Cli_MSTest_GitHubActions.md b/docs/wiz/Linux_Rider_Cli_MSTest_GitHubActions.md index 199d348016..23766664c0 100644 --- a/docs/wiz/Linux_Rider_Cli_MSTest_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Cli_MSTest_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -170,7 +170,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Rider_Cli_MSTest_None.md b/docs/wiz/Linux_Rider_Cli_MSTest_None.md index 7bffbcff00..02ca60ca84 100644 --- a/docs/wiz/Linux_Rider_Cli_MSTest_None.md +++ b/docs/wiz/Linux_Rider_Cli_MSTest_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/Linux_Rider_Cli_NUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Cli_NUnit_AppVeyor.md index 4a2737a787..8b24b2750f 100644 --- a/docs/wiz/Linux_Rider_Cli_NUnit_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Cli_NUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -180,5 +180,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Rider_Cli_NUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Cli_NUnit_AzureDevOps.md index 5143530a62..6894e90246 100644 --- a/docs/wiz/Linux_Rider_Cli_NUnit_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Cli_NUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Rider_Cli_NUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Cli_NUnit_GitHubActions.md index d99e027ede..3f04fec1a3 100644 --- a/docs/wiz/Linux_Rider_Cli_NUnit_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Cli_NUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Rider_Cli_NUnit_None.md b/docs/wiz/Linux_Rider_Cli_NUnit_None.md index 50c11d0eca..91621865c1 100644 --- a/docs/wiz/Linux_Rider_Cli_NUnit_None.md +++ b/docs/wiz/Linux_Rider_Cli_NUnit_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/Linux_Rider_Cli_xUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Cli_xUnit_AppVeyor.md index ea3cea649d..274cd02d43 100644 --- a/docs/wiz/Linux_Rider_Cli_xUnit_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Cli_xUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -180,5 +180,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Rider_Cli_xUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Cli_xUnit_AzureDevOps.md index 53f9548d7a..c871bbdb8d 100644 --- a/docs/wiz/Linux_Rider_Cli_xUnit_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Cli_xUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Rider_Cli_xUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Cli_xUnit_GitHubActions.md index 8b828d79df..4ac91c9c77 100644 --- a/docs/wiz/Linux_Rider_Cli_xUnit_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Cli_xUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Rider_Cli_xUnit_None.md b/docs/wiz/Linux_Rider_Cli_xUnit_None.md index 7e0f7d8c98..0a77bdeced 100644 --- a/docs/wiz/Linux_Rider_Cli_xUnit_None.md +++ b/docs/wiz/Linux_Rider_Cli_xUnit_None.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md index 9efbd30fe8..39ea020d45 100644 --- a/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -163,7 +163,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -174,5 +174,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md index 66d5ecee81..7e0aaade48 100644 --- a/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -163,7 +163,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md index d89725435f..f626929bfc 100644 --- a/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -163,7 +163,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_None.md b/docs/wiz/Linux_Rider_Gui_Expecto_None.md index 15e5658b29..3fca87ce39 100644 --- a/docs/wiz/Linux_Rider_Gui_Expecto_None.md +++ b/docs/wiz/Linux_Rider_Gui_Expecto_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md index 7ab1ab62ce..b06deced53 100644 --- a/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -164,7 +164,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -175,5 +175,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md index 12e47d8691..4ba6f25b14 100644 --- a/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -164,7 +164,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md index 67837aba05..e58351db80 100644 --- a/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -164,7 +164,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_None.md b/docs/wiz/Linux_Rider_Gui_MSTest_None.md index 4103eb631b..348340f759 100644 --- a/docs/wiz/Linux_Rider_Gui_MSTest_None.md +++ b/docs/wiz/Linux_Rider_Gui_MSTest_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md index 4a5e762c30..6937ec576d 100644 --- a/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -163,7 +163,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -174,5 +174,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md index 8f67d6367d..4bfd6155b0 100644 --- a/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -163,7 +163,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md index 4f246a935f..607e93ab71 100644 --- a/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -163,7 +163,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_None.md b/docs/wiz/Linux_Rider_Gui_NUnit_None.md index e08f728eee..53b833d37a 100644 --- a/docs/wiz/Linux_Rider_Gui_NUnit_None.md +++ b/docs/wiz/Linux_Rider_Gui_NUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/Linux_Rider_Gui_xUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_xUnit_AppVeyor.md index b6f61e60f2..324a8f968a 100644 --- a/docs/wiz/Linux_Rider_Gui_xUnit_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Gui_xUnit_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -163,7 +163,7 @@ Tools supported by Linux: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -174,5 +174,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Linux_Rider_Gui_xUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_xUnit_AzureDevOps.md index 5271c3e205..4bcd7c7ba0 100644 --- a/docs/wiz/Linux_Rider_Gui_xUnit_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Gui_xUnit_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -163,7 +163,7 @@ Tools supported by Linux: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Linux_Rider_Gui_xUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_xUnit_GitHubActions.md index 51cd9a5500..3ff7b2d16d 100644 --- a/docs/wiz/Linux_Rider_Gui_xUnit_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Gui_xUnit_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -163,7 +163,7 @@ Tools supported by Linux: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Linux_Rider_Gui_xUnit_None.md b/docs/wiz/Linux_Rider_Gui_xUnit_None.md index 8a498173e1..d6b207750a 100644 --- a/docs/wiz/Linux_Rider_Gui_xUnit_None.md +++ b/docs/wiz/Linux_Rider_Gui_xUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/MacOS_Other_Cli_Expecto_AppVeyor.md b/docs/wiz/MacOS_Other_Cli_Expecto_AppVeyor.md index 94616618bd..94419ba71f 100644 --- a/docs/wiz/MacOS_Other_Cli_Expecto_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Cli_Expecto_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -166,7 +166,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -177,5 +177,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Other_Cli_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Other_Cli_Expecto_AzureDevOps.md index badb3d519d..1b729d42cb 100644 --- a/docs/wiz/MacOS_Other_Cli_Expecto_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Cli_Expecto_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -166,7 +166,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Other_Cli_Expecto_GitHubActions.md b/docs/wiz/MacOS_Other_Cli_Expecto_GitHubActions.md index 17e68bd85f..97d377ca2d 100644 --- a/docs/wiz/MacOS_Other_Cli_Expecto_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Cli_Expecto_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -166,7 +166,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Other_Cli_Expecto_None.md b/docs/wiz/MacOS_Other_Cli_Expecto_None.md index ed06803dfa..3808b4aa33 100644 --- a/docs/wiz/MacOS_Other_Cli_Expecto_None.md +++ b/docs/wiz/MacOS_Other_Cli_Expecto_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/MacOS_Other_Cli_MSTest_AppVeyor.md b/docs/wiz/MacOS_Other_Cli_MSTest_AppVeyor.md index 73ae98a06d..e5d4740938 100644 --- a/docs/wiz/MacOS_Other_Cli_MSTest_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Cli_MSTest_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -167,7 +167,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -178,5 +178,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Other_Cli_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Other_Cli_MSTest_AzureDevOps.md index 9f86ad34af..f9b0326e8f 100644 --- a/docs/wiz/MacOS_Other_Cli_MSTest_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Cli_MSTest_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -167,7 +167,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Other_Cli_MSTest_GitHubActions.md b/docs/wiz/MacOS_Other_Cli_MSTest_GitHubActions.md index dc13d66098..c238c306da 100644 --- a/docs/wiz/MacOS_Other_Cli_MSTest_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Cli_MSTest_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -167,7 +167,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Other_Cli_MSTest_None.md b/docs/wiz/MacOS_Other_Cli_MSTest_None.md index ab66a6d683..ccf5d9fffd 100644 --- a/docs/wiz/MacOS_Other_Cli_MSTest_None.md +++ b/docs/wiz/MacOS_Other_Cli_MSTest_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/MacOS_Other_Cli_NUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Cli_NUnit_AppVeyor.md index d88b87be44..8849ac1115 100644 --- a/docs/wiz/MacOS_Other_Cli_NUnit_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Cli_NUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -166,7 +166,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -177,5 +177,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Other_Cli_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Cli_NUnit_AzureDevOps.md index 51f5290be3..9fc829c702 100644 --- a/docs/wiz/MacOS_Other_Cli_NUnit_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Cli_NUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -166,7 +166,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Other_Cli_NUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Cli_NUnit_GitHubActions.md index 032d2676a5..c4d66dee81 100644 --- a/docs/wiz/MacOS_Other_Cli_NUnit_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Cli_NUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -166,7 +166,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Other_Cli_NUnit_None.md b/docs/wiz/MacOS_Other_Cli_NUnit_None.md index 5c11797e50..8c5d932632 100644 --- a/docs/wiz/MacOS_Other_Cli_NUnit_None.md +++ b/docs/wiz/MacOS_Other_Cli_NUnit_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/MacOS_Other_Cli_xUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Cli_xUnit_AppVeyor.md index 643d5d1824..51dc8d11c3 100644 --- a/docs/wiz/MacOS_Other_Cli_xUnit_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Cli_xUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -166,7 +166,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -177,5 +177,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Other_Cli_xUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Cli_xUnit_AzureDevOps.md index fd210d5212..325b9b619d 100644 --- a/docs/wiz/MacOS_Other_Cli_xUnit_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Cli_xUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -166,7 +166,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Other_Cli_xUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Cli_xUnit_GitHubActions.md index 46316cb0c9..7b8e2d0f64 100644 --- a/docs/wiz/MacOS_Other_Cli_xUnit_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Cli_xUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -166,7 +166,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Other_Cli_xUnit_None.md b/docs/wiz/MacOS_Other_Cli_xUnit_None.md index 686e6d90fe..9e09d2dae0 100644 --- a/docs/wiz/MacOS_Other_Cli_xUnit_None.md +++ b/docs/wiz/MacOS_Other_Cli_xUnit_None.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md index 809acbb2f1..6a6b51b36e 100644 --- a/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -171,5 +171,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md index 00132fa138..d7b97b65b3 100644 --- a/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md index 9efdc6df10..d52ea07544 100644 --- a/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_None.md b/docs/wiz/MacOS_Other_Gui_Expecto_None.md index 472b9ecc80..d899403898 100644 --- a/docs/wiz/MacOS_Other_Gui_Expecto_None.md +++ b/docs/wiz/MacOS_Other_Gui_Expecto_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md index 234cb9de2f..be8e623d2d 100644 --- a/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -161,7 +161,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -172,5 +172,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md index f67f73bedc..f68b358ce2 100644 --- a/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -161,7 +161,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md index fb06aadb9d..c54379beaf 100644 --- a/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -161,7 +161,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_None.md b/docs/wiz/MacOS_Other_Gui_MSTest_None.md index b00e25ea72..8515af19be 100644 --- a/docs/wiz/MacOS_Other_Gui_MSTest_None.md +++ b/docs/wiz/MacOS_Other_Gui_MSTest_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md index 60cdec008c..8e25f0a8da 100644 --- a/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -171,5 +171,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md index 840c145367..dea54f68f4 100644 --- a/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md index c812301363..06c0aee638 100644 --- a/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_None.md b/docs/wiz/MacOS_Other_Gui_NUnit_None.md index ea60cd0611..71bf940e5a 100644 --- a/docs/wiz/MacOS_Other_Gui_NUnit_None.md +++ b/docs/wiz/MacOS_Other_Gui_NUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/MacOS_Other_Gui_xUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_xUnit_AppVeyor.md index eae12179dd..0990f44ec9 100644 --- a/docs/wiz/MacOS_Other_Gui_xUnit_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Gui_xUnit_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -171,5 +171,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Other_Gui_xUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_xUnit_AzureDevOps.md index afc4830259..3bc3909935 100644 --- a/docs/wiz/MacOS_Other_Gui_xUnit_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Gui_xUnit_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Other_Gui_xUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_xUnit_GitHubActions.md index 85226c685a..fe8fe7f350 100644 --- a/docs/wiz/MacOS_Other_Gui_xUnit_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Gui_xUnit_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex @@ -160,7 +160,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Other_Gui_xUnit_None.md b/docs/wiz/MacOS_Other_Gui_xUnit_None.md index 67cdba4335..58b446d5dd 100644 --- a/docs/wiz/MacOS_Other_Gui_xUnit_None.md +++ b/docs/wiz/MacOS_Other_Gui_xUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffPlex diff --git a/docs/wiz/MacOS_Rider_Cli_Expecto_AppVeyor.md b/docs/wiz/MacOS_Rider_Cli_Expecto_AppVeyor.md index 62c9feaf8e..697eb2763e 100644 --- a/docs/wiz/MacOS_Rider_Cli_Expecto_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Cli_Expecto_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -175,7 +175,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -186,5 +186,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Rider_Cli_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Rider_Cli_Expecto_AzureDevOps.md index cffe62208e..c0e953da5f 100644 --- a/docs/wiz/MacOS_Rider_Cli_Expecto_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Cli_Expecto_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -175,7 +175,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Rider_Cli_Expecto_GitHubActions.md b/docs/wiz/MacOS_Rider_Cli_Expecto_GitHubActions.md index aff47743ff..39b66a0b6e 100644 --- a/docs/wiz/MacOS_Rider_Cli_Expecto_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Cli_Expecto_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -175,7 +175,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Rider_Cli_Expecto_None.md b/docs/wiz/MacOS_Rider_Cli_Expecto_None.md index 332e541241..76e78dd20b 100644 --- a/docs/wiz/MacOS_Rider_Cli_Expecto_None.md +++ b/docs/wiz/MacOS_Rider_Cli_Expecto_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/MacOS_Rider_Cli_MSTest_AppVeyor.md b/docs/wiz/MacOS_Rider_Cli_MSTest_AppVeyor.md index 3950feea94..267f5f7960 100644 --- a/docs/wiz/MacOS_Rider_Cli_MSTest_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Cli_MSTest_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -176,7 +176,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -187,5 +187,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Rider_Cli_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Rider_Cli_MSTest_AzureDevOps.md index dcae51a9e0..acf8f3eb56 100644 --- a/docs/wiz/MacOS_Rider_Cli_MSTest_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Cli_MSTest_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -176,7 +176,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Rider_Cli_MSTest_GitHubActions.md b/docs/wiz/MacOS_Rider_Cli_MSTest_GitHubActions.md index 0159699d2d..2eaba82332 100644 --- a/docs/wiz/MacOS_Rider_Cli_MSTest_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Cli_MSTest_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -176,7 +176,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Rider_Cli_MSTest_None.md b/docs/wiz/MacOS_Rider_Cli_MSTest_None.md index cc4a6e208f..e3e88c6a6b 100644 --- a/docs/wiz/MacOS_Rider_Cli_MSTest_None.md +++ b/docs/wiz/MacOS_Rider_Cli_MSTest_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/MacOS_Rider_Cli_NUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Cli_NUnit_AppVeyor.md index acbffd2af1..68b1e520c4 100644 --- a/docs/wiz/MacOS_Rider_Cli_NUnit_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Cli_NUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -175,7 +175,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -186,5 +186,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Rider_Cli_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Cli_NUnit_AzureDevOps.md index 0b44236c31..1e2c3586b2 100644 --- a/docs/wiz/MacOS_Rider_Cli_NUnit_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Cli_NUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -175,7 +175,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Rider_Cli_NUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Cli_NUnit_GitHubActions.md index 03b082fe89..9226e999e0 100644 --- a/docs/wiz/MacOS_Rider_Cli_NUnit_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Cli_NUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -175,7 +175,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Rider_Cli_NUnit_None.md b/docs/wiz/MacOS_Rider_Cli_NUnit_None.md index cef5198d8a..00d117b22e 100644 --- a/docs/wiz/MacOS_Rider_Cli_NUnit_None.md +++ b/docs/wiz/MacOS_Rider_Cli_NUnit_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/MacOS_Rider_Cli_xUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Cli_xUnit_AppVeyor.md index f7c750f21f..255c633427 100644 --- a/docs/wiz/MacOS_Rider_Cli_xUnit_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Cli_xUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -175,7 +175,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -186,5 +186,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Rider_Cli_xUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Cli_xUnit_AzureDevOps.md index 140f10fc96..51ce52bf84 100644 --- a/docs/wiz/MacOS_Rider_Cli_xUnit_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Cli_xUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -175,7 +175,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Rider_Cli_xUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Cli_xUnit_GitHubActions.md index c617cb2e40..56da1ac6b3 100644 --- a/docs/wiz/MacOS_Rider_Cli_xUnit_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Cli_xUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -175,7 +175,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Rider_Cli_xUnit_None.md b/docs/wiz/MacOS_Rider_Cli_xUnit_None.md index e29efb56e7..04e2620d09 100644 --- a/docs/wiz/MacOS_Rider_Cli_xUnit_None.md +++ b/docs/wiz/MacOS_Rider_Cli_xUnit_None.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md index 0f3cc27bdd..015091d912 100644 --- a/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -180,5 +180,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md index 526d7fbfad..d5e716c43c 100644 --- a/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md index c4bff992f9..2261a3151e 100644 --- a/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_None.md b/docs/wiz/MacOS_Rider_Gui_Expecto_None.md index 1a8f570af8..3df5f58e10 100644 --- a/docs/wiz/MacOS_Rider_Gui_Expecto_None.md +++ b/docs/wiz/MacOS_Rider_Gui_Expecto_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md index 6e45389e15..faa8d928db 100644 --- a/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -170,7 +170,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -181,5 +181,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md index eb755ce131..b654ac0922 100644 --- a/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -170,7 +170,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md index 530350298f..211da82dff 100644 --- a/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -170,7 +170,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_None.md b/docs/wiz/MacOS_Rider_Gui_MSTest_None.md index 5a0be0bdf8..22a03370c8 100644 --- a/docs/wiz/MacOS_Rider_Gui_MSTest_None.md +++ b/docs/wiz/MacOS_Rider_Gui_MSTest_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md index f692f80014..71529719aa 100644 --- a/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -180,5 +180,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md index 499d3d75f6..972e5cd9ee 100644 --- a/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md index 1152bae509..16d3a62e9d 100644 --- a/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_None.md b/docs/wiz/MacOS_Rider_Gui_NUnit_None.md index 1f1bff795d..1a182ec1fe 100644 --- a/docs/wiz/MacOS_Rider_Gui_NUnit_None.md +++ b/docs/wiz/MacOS_Rider_Gui_NUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/MacOS_Rider_Gui_xUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_xUnit_AppVeyor.md index 16b168ef60..88107c9ff7 100644 --- a/docs/wiz/MacOS_Rider_Gui_xUnit_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Gui_xUnit_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by MacOS: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -180,5 +180,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/MacOS_Rider_Gui_xUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_xUnit_AzureDevOps.md index 7eb5569dba..1e2d865ea0 100644 --- a/docs/wiz/MacOS_Rider_Gui_xUnit_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Gui_xUnit_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by MacOS: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/MacOS_Rider_Gui_xUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_xUnit_GitHubActions.md index 663a33a2fd..08e3e43e56 100644 --- a/docs/wiz/MacOS_Rider_Gui_xUnit_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Gui_xUnit_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin @@ -169,7 +169,7 @@ Tools supported by MacOS: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/MacOS_Rider_Gui_xUnit_None.md b/docs/wiz/MacOS_Rider_Gui_xUnit_None.md index 557d2a7371..9603e4fc81 100644 --- a/docs/wiz/MacOS_Rider_Gui_xUnit_None.md +++ b/docs/wiz/MacOS_Rider_Gui_xUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Rider Plugin diff --git a/docs/wiz/Windows_Other_Cli_Expecto_AppVeyor.md b/docs/wiz/Windows_Other_Cli_Expecto_AppVeyor.md index 41d9483820..4680a6ebd1 100644 --- a/docs/wiz/Windows_Other_Cli_Expecto_AppVeyor.md +++ b/docs/wiz/Windows_Other_Cli_Expecto_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -195,5 +195,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Other_Cli_Expecto_AzureDevOps.md b/docs/wiz/Windows_Other_Cli_Expecto_AzureDevOps.md index 08276c90ff..f0294c4ec1 100644 --- a/docs/wiz/Windows_Other_Cli_Expecto_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Cli_Expecto_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Other_Cli_Expecto_GitHubActions.md b/docs/wiz/Windows_Other_Cli_Expecto_GitHubActions.md index 0db9758961..af435ba783 100644 --- a/docs/wiz/Windows_Other_Cli_Expecto_GitHubActions.md +++ b/docs/wiz/Windows_Other_Cli_Expecto_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Other_Cli_Expecto_None.md b/docs/wiz/Windows_Other_Cli_Expecto_None.md index 4de8e98036..1373270d5e 100644 --- a/docs/wiz/Windows_Other_Cli_Expecto_None.md +++ b/docs/wiz/Windows_Other_Cli_Expecto_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Other_Cli_MSTest_AppVeyor.md b/docs/wiz/Windows_Other_Cli_MSTest_AppVeyor.md index 7a1b427f84..4b1603369b 100644 --- a/docs/wiz/Windows_Other_Cli_MSTest_AppVeyor.md +++ b/docs/wiz/Windows_Other_Cli_MSTest_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -185,7 +185,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -196,5 +196,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Other_Cli_MSTest_AzureDevOps.md b/docs/wiz/Windows_Other_Cli_MSTest_AzureDevOps.md index a58dc8b6c2..b03d881612 100644 --- a/docs/wiz/Windows_Other_Cli_MSTest_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Cli_MSTest_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -185,7 +185,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Other_Cli_MSTest_GitHubActions.md b/docs/wiz/Windows_Other_Cli_MSTest_GitHubActions.md index 2d046deca6..e0a1abd6a4 100644 --- a/docs/wiz/Windows_Other_Cli_MSTest_GitHubActions.md +++ b/docs/wiz/Windows_Other_Cli_MSTest_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -185,7 +185,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Other_Cli_MSTest_None.md b/docs/wiz/Windows_Other_Cli_MSTest_None.md index 6f111a356f..0e039a95ec 100644 --- a/docs/wiz/Windows_Other_Cli_MSTest_None.md +++ b/docs/wiz/Windows_Other_Cli_MSTest_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Other_Cli_NUnit_AppVeyor.md b/docs/wiz/Windows_Other_Cli_NUnit_AppVeyor.md index f6bc9168ce..2752b522ea 100644 --- a/docs/wiz/Windows_Other_Cli_NUnit_AppVeyor.md +++ b/docs/wiz/Windows_Other_Cli_NUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -195,5 +195,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Other_Cli_NUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Cli_NUnit_AzureDevOps.md index d1d2c1647f..465a5df2c8 100644 --- a/docs/wiz/Windows_Other_Cli_NUnit_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Cli_NUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Other_Cli_NUnit_GitHubActions.md b/docs/wiz/Windows_Other_Cli_NUnit_GitHubActions.md index a0eb36d1f5..a759c35a77 100644 --- a/docs/wiz/Windows_Other_Cli_NUnit_GitHubActions.md +++ b/docs/wiz/Windows_Other_Cli_NUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Other_Cli_NUnit_None.md b/docs/wiz/Windows_Other_Cli_NUnit_None.md index 2822b59fcc..7418c5b313 100644 --- a/docs/wiz/Windows_Other_Cli_NUnit_None.md +++ b/docs/wiz/Windows_Other_Cli_NUnit_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Other_Cli_xUnit_AppVeyor.md b/docs/wiz/Windows_Other_Cli_xUnit_AppVeyor.md index bc6071e783..f93b74cef0 100644 --- a/docs/wiz/Windows_Other_Cli_xUnit_AppVeyor.md +++ b/docs/wiz/Windows_Other_Cli_xUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -195,5 +195,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Other_Cli_xUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Cli_xUnit_AzureDevOps.md index 9c102f4962..d259d567ff 100644 --- a/docs/wiz/Windows_Other_Cli_xUnit_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Cli_xUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Other_Cli_xUnit_GitHubActions.md b/docs/wiz/Windows_Other_Cli_xUnit_GitHubActions.md index 104eb7a2cd..c5cd39f639 100644 --- a/docs/wiz/Windows_Other_Cli_xUnit_GitHubActions.md +++ b/docs/wiz/Windows_Other_Cli_xUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Other_Cli_xUnit_None.md b/docs/wiz/Windows_Other_Cli_xUnit_None.md index 5e0b0d20b5..6b7be628b1 100644 --- a/docs/wiz/Windows_Other_Cli_xUnit_None.md +++ b/docs/wiz/Windows_Other_Cli_xUnit_None.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md index 4852d39107..d6e2565a1c 100644 --- a/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -178,7 +178,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -189,5 +189,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md index 6670af3b52..47c712c552 100644 --- a/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -178,7 +178,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md index b6251a7245..421fc93bc4 100644 --- a/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -178,7 +178,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Other_Gui_Expecto_None.md b/docs/wiz/Windows_Other_Gui_Expecto_None.md index c5b1982300..bc9a0e17a0 100644 --- a/docs/wiz/Windows_Other_Gui_Expecto_None.md +++ b/docs/wiz/Windows_Other_Gui_Expecto_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md index c541b0a924..4f476ebf28 100644 --- a/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -179,7 +179,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -190,5 +190,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md index 1b7bea3fbe..3e7e2be1cf 100644 --- a/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -179,7 +179,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md index 191e0722da..dc28f78fba 100644 --- a/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -179,7 +179,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Other_Gui_MSTest_None.md b/docs/wiz/Windows_Other_Gui_MSTest_None.md index 909a549815..6906b0e54f 100644 --- a/docs/wiz/Windows_Other_Gui_MSTest_None.md +++ b/docs/wiz/Windows_Other_Gui_MSTest_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md index 17a708b458..4f9404a8b8 100644 --- a/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -178,7 +178,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -189,5 +189,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md index e756980064..8d0158e255 100644 --- a/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -178,7 +178,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md index 4f691f3065..0e965eaaa2 100644 --- a/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -178,7 +178,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Other_Gui_NUnit_None.md b/docs/wiz/Windows_Other_Gui_NUnit_None.md index 63cca8cefe..20d3bceb2e 100644 --- a/docs/wiz/Windows_Other_Gui_NUnit_None.md +++ b/docs/wiz/Windows_Other_Gui_NUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Other_Gui_xUnit_AppVeyor.md b/docs/wiz/Windows_Other_Gui_xUnit_AppVeyor.md index 76c9de0041..ac4a1f1776 100644 --- a/docs/wiz/Windows_Other_Gui_xUnit_AppVeyor.md +++ b/docs/wiz/Windows_Other_Gui_xUnit_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -178,7 +178,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -189,5 +189,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Other_Gui_xUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_xUnit_AzureDevOps.md index 6b97b046a4..68185eafc0 100644 --- a/docs/wiz/Windows_Other_Gui_xUnit_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Gui_xUnit_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -178,7 +178,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Other_Gui_xUnit_GitHubActions.md b/docs/wiz/Windows_Other_Gui_xUnit_GitHubActions.md index 078eb99626..071c6e3b39 100644 --- a/docs/wiz/Windows_Other_Gui_xUnit_GitHubActions.md +++ b/docs/wiz/Windows_Other_Gui_xUnit_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -178,7 +178,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Other_Gui_xUnit_None.md b/docs/wiz/Windows_Other_Gui_xUnit_None.md index 1c6e998e35..6b206d7292 100644 --- a/docs/wiz/Windows_Other_Gui_xUnit_None.md +++ b/docs/wiz/Windows_Other_Gui_xUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Rider_Cli_Expecto_AppVeyor.md b/docs/wiz/Windows_Rider_Cli_Expecto_AppVeyor.md index 3d641c9904..4e68c82f05 100644 --- a/docs/wiz/Windows_Rider_Cli_Expecto_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Cli_Expecto_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -193,7 +193,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -204,5 +204,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Rider_Cli_Expecto_AzureDevOps.md b/docs/wiz/Windows_Rider_Cli_Expecto_AzureDevOps.md index b771e41c2b..84ef8ab84d 100644 --- a/docs/wiz/Windows_Rider_Cli_Expecto_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Cli_Expecto_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -193,7 +193,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Rider_Cli_Expecto_GitHubActions.md b/docs/wiz/Windows_Rider_Cli_Expecto_GitHubActions.md index 9c0e3e8f0f..21b8a9cb88 100644 --- a/docs/wiz/Windows_Rider_Cli_Expecto_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Cli_Expecto_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -193,7 +193,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Rider_Cli_Expecto_None.md b/docs/wiz/Windows_Rider_Cli_Expecto_None.md index 57b3e9af81..907733af36 100644 --- a/docs/wiz/Windows_Rider_Cli_Expecto_None.md +++ b/docs/wiz/Windows_Rider_Cli_Expecto_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Rider_Cli_MSTest_AppVeyor.md b/docs/wiz/Windows_Rider_Cli_MSTest_AppVeyor.md index 8af7ac7f69..8094065123 100644 --- a/docs/wiz/Windows_Rider_Cli_MSTest_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Cli_MSTest_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -194,7 +194,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -205,5 +205,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Rider_Cli_MSTest_AzureDevOps.md b/docs/wiz/Windows_Rider_Cli_MSTest_AzureDevOps.md index b2a46f7ec2..f0130dc576 100644 --- a/docs/wiz/Windows_Rider_Cli_MSTest_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Cli_MSTest_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -194,7 +194,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Rider_Cli_MSTest_GitHubActions.md b/docs/wiz/Windows_Rider_Cli_MSTest_GitHubActions.md index 6632af3655..1559408387 100644 --- a/docs/wiz/Windows_Rider_Cli_MSTest_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Cli_MSTest_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -194,7 +194,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Rider_Cli_MSTest_None.md b/docs/wiz/Windows_Rider_Cli_MSTest_None.md index 357dc51f8d..6d11989348 100644 --- a/docs/wiz/Windows_Rider_Cli_MSTest_None.md +++ b/docs/wiz/Windows_Rider_Cli_MSTest_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Rider_Cli_NUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Cli_NUnit_AppVeyor.md index 04d684f4bc..a0ec02bfa9 100644 --- a/docs/wiz/Windows_Rider_Cli_NUnit_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Cli_NUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -193,7 +193,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -204,5 +204,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Rider_Cli_NUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Cli_NUnit_AzureDevOps.md index e4a31636cd..f3617229dc 100644 --- a/docs/wiz/Windows_Rider_Cli_NUnit_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Cli_NUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -193,7 +193,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Rider_Cli_NUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Cli_NUnit_GitHubActions.md index 34007ee593..8f3d5eb8a1 100644 --- a/docs/wiz/Windows_Rider_Cli_NUnit_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Cli_NUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -193,7 +193,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Rider_Cli_NUnit_None.md b/docs/wiz/Windows_Rider_Cli_NUnit_None.md index 83c937cb16..cbdfc653ea 100644 --- a/docs/wiz/Windows_Rider_Cli_NUnit_None.md +++ b/docs/wiz/Windows_Rider_Cli_NUnit_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Rider_Cli_xUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Cli_xUnit_AppVeyor.md index 09c4c776c2..dea7ab9bc4 100644 --- a/docs/wiz/Windows_Rider_Cli_xUnit_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Cli_xUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -193,7 +193,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -204,5 +204,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Rider_Cli_xUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Cli_xUnit_AzureDevOps.md index b5fe96a911..d7cf44a536 100644 --- a/docs/wiz/Windows_Rider_Cli_xUnit_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Cli_xUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -193,7 +193,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Rider_Cli_xUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Cli_xUnit_GitHubActions.md index 73c757f3b7..6efbb7db36 100644 --- a/docs/wiz/Windows_Rider_Cli_xUnit_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Cli_xUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -193,7 +193,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Rider_Cli_xUnit_None.md b/docs/wiz/Windows_Rider_Cli_xUnit_None.md index 667b2536eb..ed30665d4e 100644 --- a/docs/wiz/Windows_Rider_Cli_xUnit_None.md +++ b/docs/wiz/Windows_Rider_Cli_xUnit_None.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md index 7d43848f40..ddd1b66f1e 100644 --- a/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -187,7 +187,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -198,5 +198,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md index 2fd9120d97..b4e5ac4df3 100644 --- a/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -187,7 +187,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md index 6daec54f75..90b2fa6255 100644 --- a/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -187,7 +187,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_None.md b/docs/wiz/Windows_Rider_Gui_Expecto_None.md index 2f929031da..7e364f8b0b 100644 --- a/docs/wiz/Windows_Rider_Gui_Expecto_None.md +++ b/docs/wiz/Windows_Rider_Gui_Expecto_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md index b0c12a24f4..4534fd7dc7 100644 --- a/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -188,7 +188,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -199,5 +199,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md index efc93c3500..5a0a2220f4 100644 --- a/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -188,7 +188,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md index 995edfb9ae..d55aa0582c 100644 --- a/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -188,7 +188,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_None.md b/docs/wiz/Windows_Rider_Gui_MSTest_None.md index a549a702b1..ff87746bfb 100644 --- a/docs/wiz/Windows_Rider_Gui_MSTest_None.md +++ b/docs/wiz/Windows_Rider_Gui_MSTest_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md index bada4863ee..5a2291c606 100644 --- a/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -187,7 +187,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -198,5 +198,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md index 7c670bf170..36343404d4 100644 --- a/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -187,7 +187,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md index 49803329e7..8d7efd672e 100644 --- a/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -187,7 +187,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_None.md b/docs/wiz/Windows_Rider_Gui_NUnit_None.md index 7cbebefcfb..bb8dace4da 100644 --- a/docs/wiz/Windows_Rider_Gui_NUnit_None.md +++ b/docs/wiz/Windows_Rider_Gui_NUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_Rider_Gui_xUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_xUnit_AppVeyor.md index 4c909b1bf5..d7f860ec2c 100644 --- a/docs/wiz/Windows_Rider_Gui_xUnit_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Gui_xUnit_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -187,7 +187,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -198,5 +198,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_Rider_Gui_xUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_xUnit_AzureDevOps.md index 6e15294235..6f8834798c 100644 --- a/docs/wiz/Windows_Rider_Gui_xUnit_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Gui_xUnit_AzureDevOps.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -187,7 +187,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_Rider_Gui_xUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_xUnit_GitHubActions.md index 38a555c446..7a92c7b30b 100644 --- a/docs/wiz/Windows_Rider_Gui_xUnit_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Gui_xUnit_GitHubActions.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -187,7 +187,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_Rider_Gui_xUnit_None.md b/docs/wiz/Windows_Rider_Gui_xUnit_None.md index eb24bd9d9f..623d142fa7 100644 --- a/docs/wiz/Windows_Rider_Gui_xUnit_None.md +++ b/docs/wiz/Windows_Rider_Gui_xUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Cli_Expecto_AppVeyor.md index 04412be955..226a9a103e 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 77e64e5221..3e4c74c051 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 921b55b957..3962e3d495 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 09b27bd1f3..c9b87cf107 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 fe6f519d20..41c66ecc13 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 b71c40f62b..a6c9b39567 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 cbfc1a5a6f..288c3c2aa2 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 c90dca00ae..936109ab4f 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 44b9dd8615..159785d1cc 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 8be861f29d..32e0ae828b 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 af8f4fd6d9..a34fc4b518 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 0de7fc9bad..94af6b5ebb 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 dfe60d374a..16b0061e21 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 7d59cec946..e1f5920152 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 4527e871f0..a1d429c0b8 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 dd039f8f6d..28802a93cf 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 7ae6325233..22de4c2838 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 430cf5d02b..84fe19f45a 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 de853e7957..bd7a3e56f4 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 af9507e64b..0bda06e779 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 920b94e034..020cb1e112 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 b4c31b4343..4d47a3f992 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 470505f9e5..b38a65b4aa 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 18dc28917f..3273b50664 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 82ef21b39d..28be665421 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 0bd7c99a3b..790598998c 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 92f377610f..ff6f41ac9a 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 83ebf322c3..ef3470f23a 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 d2b119d003..09bfc0082e 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 32032737e1..ece22b5768 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 aa0a2e9f71..06464115b9 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 5e1995705b..badc910e3c 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_None.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_xUnit_None.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_VisualStudio_Cli_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Cli_Expecto_AppVeyor.md index 75e5dcfe1f..476e716d47 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_Expecto_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudio_Cli_Expecto_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -195,5 +195,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_VisualStudio_Cli_Expecto_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Cli_Expecto_AzureDevOps.md index 04a5e8ae34..04a126cefb 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_Expecto_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudio_Cli_Expecto_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_VisualStudio_Cli_Expecto_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Cli_Expecto_GitHubActions.md index 3a17b7cba5..1700e77bc1 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_Expecto_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudio_Cli_Expecto_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_VisualStudio_Cli_Expecto_None.md b/docs/wiz/Windows_VisualStudio_Cli_Expecto_None.md index f3a45b389b..acdcc3f375 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_Expecto_None.md +++ b/docs/wiz/Windows_VisualStudio_Cli_Expecto_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.Expecto ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_VisualStudio_Cli_MSTest_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Cli_MSTest_AppVeyor.md index 5b26ecce8e..cda7cab6e6 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_MSTest_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudio_Cli_MSTest_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -185,7 +185,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -196,5 +196,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_VisualStudio_Cli_MSTest_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Cli_MSTest_AzureDevOps.md index 726c2dc3cc..78ae8125e3 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_MSTest_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudio_Cli_MSTest_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -185,7 +185,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_VisualStudio_Cli_MSTest_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Cli_MSTest_GitHubActions.md index c3b952b0ed..a6d03a9fbc 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_MSTest_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudio_Cli_MSTest_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -185,7 +185,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_VisualStudio_Cli_MSTest_None.md b/docs/wiz/Windows_VisualStudio_Cli_MSTest_None.md index 02098e0b28..4be790e804 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_MSTest_None.md +++ b/docs/wiz/Windows_VisualStudio_Cli_MSTest_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.MSTest ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_VisualStudio_Cli_NUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Cli_NUnit_AppVeyor.md index c4721adf35..ba0c4527b2 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_NUnit_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudio_Cli_NUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -195,5 +195,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_VisualStudio_Cli_NUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Cli_NUnit_AzureDevOps.md index 8ebf86b872..06733dfebf 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_NUnit_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudio_Cli_NUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_VisualStudio_Cli_NUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Cli_NUnit_GitHubActions.md index aabfa5bc5c..5bc750a704 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_NUnit_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudio_Cli_NUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_VisualStudio_Cli_NUnit_None.md b/docs/wiz/Windows_VisualStudio_Cli_NUnit_None.md index 8ac6f8c1e8..ddd1aa69ed 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_NUnit_None.md +++ b/docs/wiz/Windows_VisualStudio_Cli_NUnit_None.md @@ -22,16 +22,16 @@ dotnet add package Verify.NUnit ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_VisualStudio_Cli_xUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Cli_xUnit_AppVeyor.md index 25314cbbd6..02c8924cae 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_xUnit_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudio_Cli_xUnit_AppVeyor.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -195,5 +195,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_VisualStudio_Cli_xUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Cli_xUnit_AzureDevOps.md index 344ef35fee..8bbec9a97a 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_xUnit_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudio_Cli_xUnit_AzureDevOps.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on Azure DevOps -Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. +Directly after the test runner step add a build step to set a flag if the testrunner failed. This is done by using a [failed condition](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml). This flag will be evaluated in the CopyFiles and PublishBuildArtifacts steps below. ```yaml - task: CmdLine@2 diff --git a/docs/wiz/Windows_VisualStudio_Cli_xUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Cli_xUnit_GitHubActions.md index 70de3ccfb9..6de95daa3e 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_xUnit_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudio_Cli_xUnit_GitHubActions.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -184,7 +184,7 @@ Tools supported by Windows: ## Getting .received in output on GitHub Actions -Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. +Use a [if: failure()](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#failure) condition to upload any `*.received.*` files if the build fails. ```yaml - name: Upload Test Results diff --git a/docs/wiz/Windows_VisualStudio_Cli_xUnit_None.md b/docs/wiz/Windows_VisualStudio_Cli_xUnit_None.md index 208a0464a9..df0e7c07cb 100644 --- a/docs/wiz/Windows_VisualStudio_Cli_xUnit_None.md +++ b/docs/wiz/Windows_VisualStudio_Cli_xUnit_None.md @@ -22,16 +22,16 @@ dotnet add package xunit.runner.visualstudio ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -44,11 +44,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -89,7 +89,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md index 69880d7c8f..555cfda0e2 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md @@ -28,16 +28,16 @@ Add the following packages to the test project: ## Implicit Usings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ## Source Control ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -50,11 +50,11 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ### Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -95,7 +95,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## DiffEngineTray @@ -178,7 +178,7 @@ Tools supported by Windows: ## Getting .received in output on AppVeyor -Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). +Use a [on_failure build step](https://www.appveyor.com/docs/build-configuration/#build-pipeline) to call [Push-AppveyorArtifact](https://www.appveyor.com/docs/build-worker-api/#push-artifact). @@ -189,5 +189,5 @@ on_failure: snippet source | anchor -See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). +See also [Pushing artifacts from scripts](https://www.appveyor.com/docs/packaging-artifacts/#pushing-artifacts-from-scripts). diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md index cfe56c727e..fbd2de57bf 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 2f396378c4..ecccac9401 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 61ffc54d82..87e4210403 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 55df9ecde1..fa5b668b30 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 512a8bd91a..adcc618cd1 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 71ece7e688..610b9b9f96 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 498684aa42..c4d2f7f0bb 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 022f38b37a..36bb030fe6 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 96d176b600..99b2ad2cf3 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 59680c985a..f0b4accb0c 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 dff8771d4f..2bb8273af7 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 45d6cb6067..b0f26f83d1 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 72174f91fb..140fcfa34c 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 3be26c592e..762d49d683 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 d3c4db7be2..605f98808e 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 63282069b4..613ac20927 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 @@ -630,7 +630,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) @@ -654,7 +654,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