-
Notifications
You must be signed in to change notification settings - Fork 196
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
Get Code Action Identifiers From Roslyn #5154
Comments
Pushing this to Preview3. PR is in progress, but haven't had time to complete it this cycle due to pull-diagnostics. |
Blocked pending design review (Roslyn is considering making the |
Design review notes;
|
Tracking issue for Roslyn: dotnet/roslyn#4919 |
External, better idea of prioritization by EOW. |
Should be landing shortly, unblocking the Razor use case. |
The external work has been started. Step 1; add the custom tags property for Code Actions: dotnet/roslyn#51456 |
@TanayParikh moved to in progress since you're kicking booty here 😉 |
Currently we determine the type of code action via heuristics (ex. ends with
Path
for fully qualifyingSystem.IO.Path
). Optimally, we could get some kind of id/enum from roslyn which identifies thekind
of the code action. This issue tracks adding support for this.This would likely require expanding
VSCodeAction
to support aKind
. Alternatively we could add theKind
as part ofVSCodeAction.Data
.This issue may require changes from LSP Platform / O#.
#2501 (comment)
The text was updated successfully, but these errors were encountered: