From 8723f69388d05bc27c7418fdbe7557fee324975c Mon Sep 17 00:00:00 2001 From: sangafabrice <69244030+sangafabrice@users.noreply.github.com> Date: Fri, 22 Nov 2024 03:25:13 +0100 Subject: [PATCH] Update documentation for consistency with the build parameters implementation - Remove misleading parameter values from Build and Test command documentation - The valid set of values of the parameter `-Framework` does not contain `netcoreapp2` or `netcoreapp2.1` - Replace invalid values with `net6.0` --- .github/CONTRIBUTING.md | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index fc3482eb..3badafcd 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -76,10 +76,10 @@ The build script `build.ps1` can be used to bootstrap, build and test the projec * Bootstrap: `./build.ps1 -Bootstrap` * Build: * Targeting .NET 4.6.2 (Windows only): `./build.ps1 -Configuration Debug -Framework net462` - * Targeting .NET Core: `./build.ps1 -Configuration Debug -Framework netcoreapp2.1` + * Targeting .NET Core: `./build.ps1 -Configuration Debug -Framework net6.0` * Test: * Targeting .NET 4.6.2 (Windows only): `./build.ps1 -Test -Configuration Debug -Framework net462` - * Targeting .NET Core: `./build.ps1 -Test -Configuration Debug -Framework netcoreapp2.1` + * Targeting .NET Core: `./build.ps1 -Test -Configuration Debug -Framework net6.0` After build, the produced artifacts can be found at `/bin/Debug`. diff --git a/README.md b/README.md index 9d580533..24d962a9 100644 --- a/README.md +++ b/README.md @@ -234,10 +234,10 @@ The build script `build.ps1` can be used to bootstrap, build and test the projec * Bootstrap: `./build.ps1 -Bootstrap` * Build: * Targeting .NET 4.6.2 (Windows only): `./build.ps1 -Configuration Debug -Framework net462` - * Targeting .NET Core: `./build.ps1 -Configuration Debug -Framework netcoreapp2.1` + * Targeting .NET Core: `./build.ps1 -Configuration Debug -Framework net6.0` * Test: * Targeting .NET 4.6.2 (Windows only): `./build.ps1 -Test -Configuration Debug -Framework net462` - * Targeting .NET Core: `./build.ps1 -Test -Configuration Debug -Framework netcoreapp2.1` + * Targeting .NET Core: `./build.ps1 -Test -Configuration Debug -Framework net6.0` After build, the produced artifacts can be found at `/bin/Debug`. In order to isolate your imported module to the one locally built, be sure to run