-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(cli): dotnet help new link opening #45282
fix(cli): dotnet help new link opening #45282
Conversation
Running the dotnet CLI locally with the fix in this PR, shows the dotnet_cli_help_new_fix_smaller.mp4 |
7aacb36
to
fcb76d9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm happy with this 🙂 Thanks for the contribution!
fcb76d9
to
ac48207
Compare
/backport to release/9.0.2xx |
Started backporting to release/9.0.2xx: https://github.com/dotnet/sdk/actions/runs/12264978382 |
closes #45231
This PR fixes the issue where the
dotnet help new
command does not open the online documentation.The solution was adding an interface
ICommandDocument
that bothDocumentedCommand
andNewCommand
could implement and then use this to validate the existence of a link.