fix: move ConfigurationSchema.json under src/Generated instead of roo…#10316
Merged
JoshLove-msft merged 5 commits intoApr 9, 2026
Merged
Conversation
…t Generated The ConfigurationSchema.json was being written to a new Generated folder at the project root level, but it should go under the existing src/Generated folder where all other generated artifacts reside. - ScmCodeModelGenerator.cs: output path changed to src/Generated/schema/ - NewProjectScaffolding.cs: csproj pack include updated to Generated\schema\ (relative to src/ where csproj lives) - All 72 test projects regenerated with corrected paths Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…t Generated The ConfigurationSchema.json was being written to a new Generated folder at the project root level, but it should go under the existing src/Generated folder where all other generated artifacts reside. - ScmCodeModelGenerator.cs: output path changed to src/Generated/schema/ - NewProjectScaffolding.cs: csproj pack include updated to Generated\schema\ (relative to src/ where csproj lives) - All 72 test projects regenerated with corrected paths Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…ial-words These three projects still had the old root-level Generated/schema/ folders alongside the new src/Generated/schema/ location. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
These three projects still referenced the old root-level path ..\Generated\schema\ConfigurationSchema.json in their csproj files. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…m/JoshLove-msft/typespec into fix/configuration-schema-location
commit: |
Contributor
|
No changes needing a change description found. |
jorgerangel-msft
approved these changes
Apr 9, 2026
jorgerangel-msft
left a comment
Contributor
There was a problem hiding this comment.
I guess we both missed this 😅
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.
…t Generated
The ConfigurationSchema.json was being written to a new Generated folder at the project root level, but it should go under the existing src/Generated folder where all other generated artifacts reside.