-
Notifications
You must be signed in to change notification settings - Fork 581
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
Remove ConfigureAwait from the Cli #8219
Conversation
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.
Pull Request Overview
This PR removes all instances of .ConfigureAwait from asynchronous calls in the CLI, aligning with the CLI’s console-based context where context capturing is unnecessary. The changes improve code readability and simplify async code in several areas.
- Removal of .ConfigureAwait calls for asynchronous operations.
- Updates to command configuration and process execution methods.
- Consistent changes across Program.cs, DotNetCliRunner.cs, NuGetPackageCache.cs, and AppHostBackchannel.cs.
Reviewed Changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.
File | Description |
---|---|
Aspire.Cli/Program.cs | Removed ConfigureAwait calls in Run, Build, New, and Add command configurations. |
Aspire.Cli/DotNetCliRunner.cs | Removed ConfigureAwait from process execution and backchannel-related asynchronous calls. |
Aspire.Cli/NuGetPackageCache.cs | Removed ConfigureAwait from package search and retrieval methods. |
Aspire.Cli/Backchannel/AppHostBackchannel.cs | Removed ConfigureAwait from backchannel connectivity and RPC invocation methods. |
Files not reviewed (1)
- .editorconfig: Language not supported
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.
Probably a dumb question, but isn't also there performance reasons to use ConfigureAwait(false)
as you would then not need to capture the synchronization context?
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 understand that this is mostly useful on libraries, but at least the rule of thumb that I used to follow is to always use ConfigureAwait unless you explicitly know that you want to use the same context.
Console applications use the default SynchronizationContext (unless you set one explicitly, which we don't). https://devblogs.microsoft.com/dotnet/configureawait-faq/#when-should-i-use-configureawait(false)
|
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.
Got it, thanks for sharing the link. This LGTM.
Description
Since the CLI is a console application, requiring ConfigureAwait everywhere isn't necessary.
Checklist