You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Roslyn has custom commands in VS Code that handle fix all in code actions, and that system doesn't work for Razor documents.
The command routes the request to Roslyn's code action resolve endpoint, so we probably just need to detect that the code action is happening in a Razor document, and route the request through to Razor. In theory we would do this by wrapping the data in the request and adding a document, and whatever else Razor requires, then the request would be routed to Razor, unwrapped, and it would route to the Roslyn code action resolve endpoint.
The text was updated successfully, but these errors were encountered:
Roslyn has custom commands in VS Code that handle fix all in code actions, and that system doesn't work for Razor documents.
The command routes the request to Roslyn's code action resolve endpoint, so we probably just need to detect that the code action is happening in a Razor document, and route the request through to Razor. In theory we would do this by wrapping the data in the request and adding a document, and whatever else Razor requires, then the request would be routed to Razor, unwrapped, and it would route to the Roslyn code action resolve endpoint.
The text was updated successfully, but these errors were encountered: