Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build-test-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: dotnet tool restore

- name: Restore
run: dotnet restore Scribe.slnx
run: dotnet restore Scribe.slnx -p:Configuration=Release

- name: Build
run: dotnet build Scribe.slnx --configuration Release --no-restore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: dotnet tool restore

- name: Restore
run: dotnet restore Scribe.Sdk/Scribe.Sdk.csproj
run: dotnet restore Scribe.Sdk/Scribe.Sdk.csproj -p:Configuration=Release

- name: Build
run: dotnet build Scribe.Sdk/Scribe.Sdk.csproj --configuration Release --no-restore
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"allowPrerelease": false
},
"msbuild-sdks": {
"BulletsForHumanity.Scribe.Sdk": "0.5.3"
"BulletsForHumanity.Scribe.Sdk": "0.6.1"
}
Comment on lines 7 to 9

Copilot AI Apr 12, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This bumps the repo’s pinned Scribe MSBuild SDK version to 0.6.1, but multiple docs/READMEs still show older example versions (e.g. 0.3.0). Please update the documented global.json snippets (README.md, Scribe.Sdk/README.md, docs/project-setup.md, docs/architecture-infrastructure.md) to match the supported/current SDK version (or switch the docs to a <version> placeholder consistently) so the guidance stays accurate.

Copilot uses AI. Check for mistakes.
}
Loading