Add quickstart for local dev/build. update documents - #436
Merged
Dinah Xiaoman G (DinahK-2SO) merged 14 commits intoJul 20, 2026
Conversation
Copilot started reviewing on behalf of
Dinah Xiaoman G (DinahK-2SO)
July 17, 2026 08:45
View session
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates build documentation to remove outdated submodule setup steps and adjusts the razzle.cmd MSBuild discovery logic to allow newer Visual Studio major versions (intended to include VS 18 / VS2026), while improving failure behavior with explicit non-zero exit codes.
Changes:
- Remove “git submodule update” instructions from build docs and Copilot instructions.
- Broaden
vswhereMSBuild discovery to[17.0,19.0)and switch error paths toexit /b 1. - Add a guard to ensure the resolved
MSBuild.exepath exists, and ensure the script exits0on success.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
tools/razzle.cmd |
Broaden VS/MSBuild detection to include newer VS major versions; improve error handling and add a resolution guard. |
doc/building.md |
Remove submodule initialization instructions and state dependencies are restored via build tooling. |
.github/copilot-instructions.md |
Remove submodule initialization instructions from Copilot contributor guidance. |
Copilot started reviewing on behalf of
Dinah Xiaoman G (DinahK-2SO)
July 17, 2026 09:46
View session
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Copilot started reviewing on behalf of
Dinah Xiaoman G (DinahK-2SO)
July 17, 2026 09:53
View session
Copilot started reviewing on behalf of
Dinah Xiaoman G (DinahK-2SO)
July 17, 2026 10:00
View session
Copilot started reviewing on behalf of
Dinah Xiaoman G (DinahK-2SO)
July 17, 2026 10:04
View session
Copilot started reviewing on behalf of
Dinah Xiaoman G (DinahK-2SO)
July 17, 2026 10:20
View session
Dinah Xiaoman G (DinahK-2SO)
marked this pull request as draft
July 17, 2026 16:51
Dinah Xiaoman G (DinahK-2SO)
force-pushed
the
user/DinahK-2SO/update-build-docs
branch
from
July 20, 2026 07:03
e95771d to
d3ffd88
Compare
Dinah Xiaoman G (DinahK-2SO)
marked this pull request as ready for review
July 20, 2026 07:10
… user/DinahK-2SO/update-build-docs
Copilot started reviewing on behalf of
Dinah Xiaoman G (DinahK-2SO)
July 20, 2026 07:11
View session
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Copilot started reviewing on behalf of
Dinah Xiaoman G (DinahK-2SO)
July 20, 2026 07:42
View session
This reverts commit 1d1c21a.
…oft/intelligent-terminal into user/DinahK-2SO/update-build-docs
Copilot started reviewing on behalf of
Dinah Xiaoman G (DinahK-2SO)
July 20, 2026 07:45
View session
Copilot started reviewing on behalf of
Dinah Xiaoman G (DinahK-2SO)
July 20, 2026 08:10
View session
Copilot started reviewing on behalf of
Dinah Xiaoman G (DinahK-2SO)
July 20, 2026 08:30
View session
Kai Tao (vanzue)
approved these changes
Jul 20, 2026
4 tasks
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.
Add quick start for local dev/build;
Document update: remove submodules instructions; update doc and script to accept vs2026