-
Notifications
You must be signed in to change notification settings - Fork 419
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
Fixed a regression that broke FindSymbols for CSX #1321
Conversation
ideally, we can still get this into 1.17.0 of C# extension in VS Code, do you guys have any plan for the release date of that one, I saw that @rchande pushed out beta7 yesterday |
I remember mentioning this in the original PR here #1282 (comment) |
ah I was on holidays then so it slipped past me 😄 |
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.
Thanks!
@filipw re: shipping this--A big focus for the C# extension in 17.0 has been working with the Asp.NET team to ship an initial Razor experience in the extension. This has involved a lot of validation based on the 1.32.6 release of OmniSharp. Since 1.32.6, there have been other changes unrelated to this one, so we'd probably need to redo some of our validation if we inserted 1.32.7 to the extension. We first shipped the CSX find symbols regression in 1.16.0 in September, so it has been this way for some time. I would prefer to merge your fix and recommend that users who need it set the "omnisharp.version" option to "latest". We can then insert 1.32.7 into 17.1 and include it in betas. Thoughts? |
thanks, that's OK, let's do it that way After 1.17.0 ships, would be great if you could publish the 1.17.1-beta1 fairly quickly though, so that there is a concrete extension build that can be installed as a workaround. |
I will merge it then 👍 |
This PR fixes a regression introduced in #1282 that broke symbol search for CSX.
I also enabled the FindSymbolsFacts to specifically run twice - once for both regular C# and once for CSX to prevent this in the future (we have same pattern on most tests, but it wasn't there on this one though).
This is quite critical so it would be great to merge this ASAP.