Conversation
Co-authored-by: gewarren <24882762+gewarren@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] [Breaking change]:
Document breaking change: 'dotnet watch' logs to stderr instead of stdout in .NET 10 RC 2
Oct 6, 2025
dotnet watch logs internal-facing messages to stderr instead of stdout
gewarren
approved these changes
Oct 8, 2025
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR documents a breaking change in .NET 10 RC 2 where dotnet watch now emits its internal log messages to stderr instead of stdout. This is part of a broader effort to prevent .NET CLI commands from obscuring the stdout channel, which is often reserved for special semantics when running applications like LSP or MCP servers.
- Added new breaking change documentation file explaining the behavior change
- Updated table of contents to include the new breaking change entry
- Added entry to the .NET 10 breaking changes index with proper categorization
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| docs/core/compatibility/sdk/10.0/dotnet-watch-stderr.md | New breaking change documentation explaining the dotnet watch stderr logging change |
| docs/core/compatibility/toc.yml | Added table of contents entry for the new breaking change document with reorganization of existing entries |
| docs/core/compatibility/10.0.md | Added entry to the .NET 10 breaking changes index table |
gewarren
reviewed
Oct 8, 2025
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
baronfel
approved these changes
Oct 8, 2025
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.
This PR documents a breaking change in .NET 10 RC 2 where
dotnet watchnow emits its internal log messages tostderrinstead ofstdout.Changes
docs/core/compatibility/sdk/10.0/dotnet-watch-stderr.mddocs/core/compatibility/toc.yml)docs/core/compatibility/10.0.md)Breaking Change Summary
Starting in .NET 10 RC 2,
dotnet watchemits its own log messages to thestderrchannel instead ofstdout. This change is part of a broader effort to prevent .NET CLI commands from obscuring thestdoutchannel, which is often reserved for special semantics when running applications like LSP or MCP servers.Most users won't need to take any action. If users need the
dotnet watchmessages onstdout, they can redirect thestderrstream using2>&1.This change was implemented in dotnet/sdk#50820.
Fixes #45871
Original prompt
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.
Internal previews