Update linux.md documentation to reflect current CI build configuration#26255
Merged
Conversation
…mework Co-authored-by: TravisEz13 <10873629+TravisEz13@users.noreply.github.com>
Co-authored-by: TravisEz13 <10873629+TravisEz13@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update linux.md documentation for current build process
Update linux.md documentation to reflect current CI build configuration
Oct 20, 2025
TravisEz13
reviewed
Oct 20, 2025
Co-authored-by: TravisEz13 <10873629+TravisEz13@users.noreply.github.com>
adityapatwardhan
approved these changes
Oct 21, 2025
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR updates the Linux build documentation to align with the current CI configuration and codebase state. The changes ensure developers following the documentation will use the same build environment and tools as the automated CI pipeline.
Key changes:
- Updated Ubuntu version from 16.04 LTS to 24.04 LTS to match the CI's ubuntu-latest
- Updated .NET SDK version from 2.0.0 to 10.0.100-rc.1 to match global.json
- Updated target framework from net6.0 to net10.0 in build output paths
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| docs/building/linux.md | Updated Ubuntu version, .NET SDK version, target framework path, bootstrap command parameters, and simplified bootstrap process description |
| .spelling | Added net10.0 to prevent spell-check warnings for the new framework version |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
SeeminglyScience
approved these changes
Oct 21, 2025
jshigetomi
approved these changes
Oct 21, 2025
Contributor
|
📣 Hey @@Copilot, how did we do? We would love to hear your feedback with the link below! 🗣️ 🔗 https://aka.ms/PSRepoFeedback |
SIRMARGIN
pushed a commit
to SIRMARGIN/PowerShell
that referenced
this pull request
Dec 12, 2025
…on (PowerShell#26255) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: TravisEz13 <10873629+TravisEz13@users.noreply.github.com>
kilasuit
pushed a commit
to kilasuit/PowerShell
that referenced
this pull request
Jan 2, 2026
…on (PowerShell#26255) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: TravisEz13 <10873629+TravisEz13@users.noreply.github.com>
JustinGrote
pushed a commit
to JustinGrote/PowerShell
that referenced
this pull request
Jun 2, 2026
…on (PowerShell#26255) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: TravisEz13 <10873629+TravisEz13@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The
docs/building/linux.mddocumentation was outdated and did not reflect the current build process used in the linux-ci workflow. This PR updates the documentation to match the actual CI configuration and current codebase.Changes
Ubuntu Version
Updated the Ubuntu version reference from "Ubuntu 16.04 LTS" to "Ubuntu 24.04 LTS (the CI uses ubuntu-latest)" to reflect the specific version that ubuntu-latest currently refers to, as shown in
.github/workflows/linux-ci.yml..NET SDK Version
Updated the .NET SDK version from "2.0.0" to "10.0.100-rc.1" to match the version specified in
global.json:{ "sdk": { "version": "10.0.100-rc.1.25451.107" } }Target Framework
Updated the output path from
net6.0tonet10.0to reflect the currentTargetFrameworkspecified inPowerShell.Common.props:./src/powershell-unix/bin/Debug/net6.0/linux-x64/publish/pwsh./src/powershell-unix/bin/Debug/net10.0/linux-x64/publish/pwshBootstrap Process
-Scenario Bothparameter to theStart-PSBootstrapcommand, as required by the function signature inbuild.psm1Spelling Dictionary
Added "net10.0" to the
.spellingfile to prevent spell-check warnings for the new framework version reference.Verification
All changes were verified against:
.github/workflows/linux-ci.yml- CI workflow configurationglobal.json- .NET SDK versionPowerShell.Common.props- Target framework versionbuild.psm1- Bootstrap function implementationFixes #issue_number
Original prompt
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.