-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Update new IDiagnosticAnalyzerService methods to be async. #79809
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
Conversation
| editorConfigFileName: FileName); | ||
|
|
||
| UpdateOptions(options, solution, projects); | ||
| // TODO(cyrusn): Do we need to track this work in some way? |
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.
Is there also a risk of racing if multiple things are happening at once now too? Are we better off just making this a JTF.Run() and keeping it synchronous rather than introducing regressions here which we aren't going to want to investigate?
jasonmalinowski
left a comment
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.
Looks fine other than that TODO about 'do we need to track this work'? Should we just keep that a synchronous JTF.Run() and come back to that later? Yes that might UI delay but we can invest in making that better later if needed, as opposed to introducing bugs now...
Followup to #79808.
Doing this allows them to be remotable to our OOP service.