Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation for consistency with the build parameters implementation #4286

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<your-local-repo-root>/bin/Debug`.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<your-local-repo-root>/bin/Debug`.
In order to isolate your imported module to the one locally built, be sure to run
Expand Down