Skip to content
Merged
Changes from 4 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: 3 additions & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"sdk": {
"version": "10.0.100-rc.1.25411.109"
"version": "10.0.100-rc.1.25411.109",
"paths": [ ".dotnet", "$host$" ],
"errorMessage": "The .NET SDK could not be found, run ./restore.cmd or ./restore.sh first."
Copy link
Preview

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

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

The error message references './restore.cmd' and './restore.sh' scripts, but based on the coding guidelines, the repository uses './build.sh' scripts in subdirectories for building and running tests. Consider updating the error message to reference the correct scripts or provide more accurate guidance.

Suggested change
"errorMessage": "The .NET SDK could not be found, run ./restore.cmd or ./restore.sh first."
"errorMessage": "The .NET SDK could not be found. Please run ./build.sh (or ./build.cmd on Windows) in the appropriate subdirectory first."

Copilot uses AI. Check for mistakes.

},
"tools": {
"dotnet": "10.0.100-rc.1.25411.109",
Expand Down
Loading