diff --git a/docs/build-server.md b/docs/build-server.md index 9434f16e3..4eedcd033 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 d8953fca1..acbd0c35b 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 7a3585951..1439f415b 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 f8fcf009e..618b6f990 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 ea99e8a96..827a02b82 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 34167fcb3..2f3fc7dd6 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 4fb71667d..985eda1df 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 3f7d1b498..dd6c49a65 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 53bacf681..ed28aa064 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 7de71073d..fb4851cfe 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 c8b69f6f3..68e6c01fd 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 a0c5c012a..676ec5bb3 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 4ad7e80be..6d9bdb10f 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 7ca84f537..c9819a451 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 6bbf695ac..be5d0933b 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 aeace1748..150360b2d 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 16f3b6447..a6773fc0d 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 52e62198b..1b20a6e3b 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 854070547..e6e61dd85 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 918b5d87a..f7e0c4ceb 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 407201d91..6b9b6d367 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 a0ae1fca2..f7a90da18 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 83c6603f7..a889c0a20 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 719985e82..21eae3a44 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 09e2bb489..80e1cc72d 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 c0a3e516f..84e09ae84 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 8d5872125..a31d5e5ee 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 f8fbfa03c..39fd93594 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 77eee7795..52e0b8f07 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 2dab3bf7e..ad39cfba3 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 b1cb38ced..86f9521c8 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 03411cf25..0b3216f5b 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 b4be4e811..868e4179a 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 3700d7f02..6a36ae08e 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 4545179d0..5ce18addf 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 f58a3c227..2411f7a0f 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 58958ba3f..bbd5432a8 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 deaa20709..1014c5036 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 63a5cc168..a04d4a748 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 731e0a5f0..6a05f2155 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 23766664c..199d34801 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 02ca60ca8..7bffbcff0 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 8b24b2750..4a2737a78 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 6894e9024..5143530a6 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 3f04fec1a..d99e027ed 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 91621865c..50c11d0ec 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 274cd02d4..ea3cea649 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 c871bbdb8..53f9548d7 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 4ac91c9c7..8b828d79d 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 0a77bdece..7e0f7d8c9 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 39ea020d4..9efbd30fe 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 7e0aaade4..66d5ecee8 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 f626929bf..d89725435 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 3fca87ce3..15e5658b2 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 b06deced5..7ab1ab62c 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 4ba6f25b1..12e47d869 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 e58351db8..67837aba0 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 348340f75..4103eb631 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 6937ec576..4a5e762c3 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 4bfd6155b..8f67d6367 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 607e93ab7..4f246a935 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 53b833d37..e08f728ee 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 324a8f968..b6f61e60f 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 4bcd7c7ba..5271c3e20 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 3ff7b2d16..51cd9a550 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 d6b207750..8a498173e 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 94419ba71..94616618b 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 1b729d42c..badb3d519 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 97d377ca2..17e68bd85 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 3808b4aa3..ed06803df 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 e5d474093..73ae98a06 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 f9b0326e8..9f86ad34a 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 c238c306d..dc13d6609 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 ccf5d9fff..ab66a6d68 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 8849ac111..d88b87be4 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 9fc829c70..51f5290be 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 c4d66dee8..032d2676a 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 8c5d93263..5c11797e5 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 51dc8d11c..643d5d182 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 325b9b619..fd210d521 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 7b8e2d0f6..46316cb0c 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 9e09d2dae..686e6d90f 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 6a6b51b36..809acbb2f 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 d7b97b65b..00132fa13 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 d52ea0754..9efdc6df1 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 d89940389..472b9ecc8 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 be8e623d2..234cb9de2 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 f68b358ce..f67f73bed 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 c54379bea..fb06aadb9 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 8515af19b..b00e25ea7 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 8e25f0a8d..60cdec008 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 dea54f68f..840c14536 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 06c0aee63..c81230136 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 71bf940e5..ea60cd061 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 0990f44ec..eae12179d 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 3bc390993..afc483025 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 fe8fe7f35..85226c685 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 58b446d5d..67cdba433 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 697eb2763..62c9feaf8 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 c0e953da5..cffe62208 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 39b66a0b6..aff47743f 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 76e78dd20..332e54124 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 267f5f796..3950feea9 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 acf8f3eb5..dcae51a9e 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 2eaba8233..0159699d2 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 e3e88c6a6..cc4a6e208 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 68b1e520c..acbffd2af 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 1e2c3586b..0b44236c3 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 9226e999e..03b082fe8 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 00d117b22..cef5198d8 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 255c63342..f7c750f21 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 51ce52bf8..140f10fc9 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 56da1ac6b..c617cb2e4 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 04e2620d0..e29efb56e 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 015091d91..0f3cc27bd 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 d5e716c43..526d7fbfa 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 2261a3151..c4bff992f 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 3df5f58e1..1a8f570af 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 faa8d928d..6e45389e1 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 b654ac092..eb755ce13 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 211da82df..530350298 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 22a03370c..5a0be0bdf 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 71529719a..f692f8001 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 972e5cd9e..499d3d75f 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 16d3a62e9..1152bae50 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 1a182ec1f..1f1bff795 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 88107c9ff..16b168ef6 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 1e2d865ea..7eb5569db 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 08e3e43e5..663a33a2f 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 9603e4fc8..557d2a737 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 4680a6ebd..41d948382 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 f0294c4ec..08276c90f 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 af435ba78..0db975896 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 1373270d5..4de8e9803 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 4b1603369..7a1b427f8 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 b03d88161..a58dc8b6c 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 e0a1abd6a..2d046deca 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 0e039a95e..6f111a356 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 2752b522e..f6bc9168c 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 465a5df2c..d1d2c1647 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 a759c35a7..a0eb36d1f 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 7418c5b31..2822b59fc 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 f93b74cef..bc6071e78 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 d259d567f..9c102f496 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 c5cd39f63..104eb7a2c 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 6b7be628b..5e0b0d20b 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 d6e2565a1..4852d3910 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 47c712c55..6670af3b5 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 421fc93bc..b6251a724 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 bc9a0e17a..c5b198230 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 4f476ebf2..c541b0a92 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 3e7e2be1c..1b7bea3fb 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 dc28f78fb..191e0722d 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 6906b0e54..909a54981 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 4f9404a8b..17a708b45 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 8d0158e25..e75698006 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 0e965eaaa..4f691f306 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 20d3bceb2..63cca8cef 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 ac4a1f177..76c9de004 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 68185eafc..6b97b046a 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 071c6e3b3..078eb9962 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 6b206d729..1c6e998e3 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 4e68c82f0..3d641c990 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 84ef8ab84..b771e41c2 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 21b8a9cb8..9c0e3e8f0 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 907733af3..57b3e9af8 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 809406512..8af7ac7f6 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 f0130dc57..b2a46f7ec 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 155940838..6632af365 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 6d1198934..357dc51f8 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 a0ec02bfa..04d684f4b 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 f3617229d..e4a31636c 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 8f3d5eb8a..34007ee59 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 cbdfc653e..83c937cb1 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 dea7ab9bc..09c4c776c 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 d7cf44a53..b5fe96a91 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 6efbb7db3..73c757f3b 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 ed30665d4..667b2536e 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 ddd1b66f1..7d43848f4 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 b4e5ac4df..2fd9120d9 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 90b2fa625..6daec54f7 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 7e364f8b0..2f929031d 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 4534fd7dc..b0c12a24f 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 5a0a2220f..efc93c350 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 d55aa0582..995edfb9a 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 ff87746bf..a549a702b 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 5a2291c60..bada4863e 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 36343404d..7c670bf17 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 8d7efd672..49803329e 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 bb8dace4d..7cbebefcf 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 d7f860ec2..4c909b1bf 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 6f8834798..6e1529423 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 7a92c7b30..38a555c44 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 623d142fa..eb24bd9d9 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 226a9a103..04412be95 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 3e4c74c05..77e64e522 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 3962e3d49..921b55b95 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 c9b87cf10..09b27bd1f 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 41c66ecc1..fe6f519d2 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 a6c9b3956..b71c40f62 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 288c3c2aa..cbfc1a5a6 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 936109ab4..c90dca00a 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 159785d1c..44b9dd861 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 32e0ae828..8be861f29 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 a34fc4b51..af8f4fd6d 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 94af6b5eb..0de7fc9ba 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 16b0061e2..dfe60d374 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 e1f592015..7d59cec94 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 a1d429c0b..4527e871f 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 28802a93c..dd039f8f6 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 22de4c283..7ae632523 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 84fe19f45..430cf5d02 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 bd7a3e56f..de853e795 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 0bda06e77..af9507e64 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 020cb1e11..920b94e03 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 4d47a3f99..b4c31b434 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 b38a65b4a..470505f9e 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 3273b5066..18dc28917 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 28be66542..82ef21b39 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 790598998..0bd7c99a3 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 ff6f41ac9..92f377610 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 ef3470f23..83ebf322c 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 09bfc0082..d2b119d00 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 ece22b576..32032737e 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 06464115b..aa0a2e9f7 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 badc910e3..5e1995705 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 476e716d4..75e5dcfe1 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 04a126cef..04a5e8ae3 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 1700e77bc..3a17b7cba 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 acdcc3f37..f3a45b389 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 cda7cab6e..5b26ecce8 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 78ae8125e..726c2dc3c 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 a6d03a9fb..c3b952b0e 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 4be790e80..02098e0b2 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 ba0c4527b..c4721adf3 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 06733dfeb..8ebf86b87 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 5bc750a70..aabfa5bc5 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 ddd1aa69e..8ac6f8c1e 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 02c8924ca..25314cbbd 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 8bbec9a97..344ef35fe 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 6de95daa3..70de3ccfb 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 df0e7c07c..208a0464a 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 555cfda0e..69880d7c8 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 fbd2de57b..cfe56c727 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 ecccac940..2f396378c 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 87e421040..61ffc54d8 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 fa5b668b3..55df9ecde 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 adcc618cd..512a8bd91 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 610b9b9f9..71ece7e68 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 c4d2f7f0b..498684aa4 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 36bb030fe..022f38b37 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 99b2ad2cf..96d176b60 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 f0b4accb0..59680c985 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 2bb8273af..dff8771d4 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 b0f26f83d..45d6cb606 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 140fcfa34..72174f91f 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 762d49d68..3be26c592 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 605f98808..d3c4db7be 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 c59c3652b..688eaae13 100644 --- a/readme.md +++ b/readme.md @@ -53,9 +53,9 @@ Accepting or declining a snapshot file is part of the core workflow of Verify. T ### ImplicitUsings -**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** +**All examples use [Implicit Usings](https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#implicitusings). Ensure the following is set to have examples compile correctly `enable`** -If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. +If `ImplicitUsings` are not enabled, substitute usages of `Verify()` with `Verifier.Verify()`. ### Class being tested @@ -373,7 +373,7 @@ Results in: ### Includes/Excludes - * **All `*.received.*` files should be excluded from source control.** + * **All `*.received.*` files should be excluded from source control.** eg. add the following to `.gitignore` @@ -386,12 +386,12 @@ If using [UseSplitModeForUniqueDirectory](/docs/naming.md#usesplitmodeforuniqued `*.received/` -All `*.verified.*` files should be committed to source control. +All `*.verified.*` files should be committed to source control. ## Text file settings -Text variants of verified and received have the following characteristics: +Text variants of verified and received have the following characteristics: * UTF8 with a [Byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark) * Newlines as line-feed (lf) @@ -432,7 +432,7 @@ trim_trailing_whitespace = false ``` -*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* +*Note that the above are suggested for subset of text extension. Add others as required based on the text file types being verified.* ## Static settings @@ -629,7 +629,7 @@ Nick Chapsas (1 Aug 2022)](https://www.youtube.com/watch?v=Q1_YkcPwpqY) ## More Documentation - * [Clipboard](/docs/clipboard.md) + * [Clipboard](/docs/clipboard.md) * [Compared to assertions](/docs/compared-to-assertion.md) * [Verify options](/docs/verify-options.md) * [VerifyDirectory](/docs/verify-directory.md) @@ -653,7 +653,7 @@ Nick Chapsas (1 Aug 2022)](https://www.youtube.com/watch?v=Q1_YkcPwpqY) * [Converters](/docs/converter.md) * [Explicit Targets](/docs/explicit-targets.md) * [FSharp Usage](/docs/fsharp.md) - * [Compared to ApprovalTests](/docs/compared-to-approvaltests.md) + * [Compared to ApprovalTests](/docs/compared-to-approvaltests.md) ## Icon