From a3439b4b50ea5a3de0244e7d6796ce3416ad6805 Mon Sep 17 00:00:00 2001 From: Greg Smulko Date: Fri, 11 Oct 2019 20:49:28 +0100 Subject: [PATCH 1/2] Docs: update required version of .NET CLI --- docs/building/windows-core.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/building/windows-core.md b/docs/building/windows-core.md index ed45a2ae958..ef993bbe0be 100644 --- a/docs/building/windows-core.md +++ b/docs/building/windows-core.md @@ -29,7 +29,7 @@ that you must have PowerShell Core 6 Beta.9 (or newer) installed to successfully ### .NET CLI We use the [.NET Command Line Interface][dotnet-cli] (`dotnet`) to build PowerShell. -The version we are currently using is `2.0.0`. +The version we are currently using is `3.0.0`. The `Start-PSBootstrap` function will automatically install it and add it to your path: ```powershell From 95b5190b7b4440eca39c180ddcf67f275005a88e Mon Sep 17 00:00:00 2001 From: Greg Smulko Date: Fri, 11 Oct 2019 20:53:56 +0100 Subject: [PATCH 2/2] Docs: fix typo? There are two functions listed, not three. --- docs/testing-guidelines/testing-guidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/testing-guidelines/testing-guidelines.md b/docs/testing-guidelines/testing-guidelines.md index b7b952f1a1a..ce987beb6d0 100755 --- a/docs/testing-guidelines/testing-guidelines.md +++ b/docs/testing-guidelines/testing-guidelines.md @@ -94,7 +94,7 @@ Currently, we have a minuscule number of tests which are run by using xUnit. ## Running tests outside of CI When working on new features or fixes, it is natural to want to run those tests locally before making a PR. -Three helper functions are part of the build.psm1 module to help with that: +These helper functions are part of the build.psm1 module to help with that: * `Start-PSPester` will execute all Pester tests which are run by the CI system * `Start-PSxUnit` will execute the available xUnit tests run by the CI system