-
Notifications
You must be signed in to change notification settings - Fork 789
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
F#: Editor features (intellisense etc) don't work after deleting ".vs" #5395
Comments
From @TIHan on July 25, 2018 20:25 Yes, going to look at it now. |
From @Pilchie on July 25, 2018 21:26 Leaving in 15.8 for investigations. |
From @TIHan on July 26, 2018 0:43 I know what is happening now. F#'s language service is not being initialized unless a document has been opened. This means we miss out on all the workspace events that F#'s language service needs. To be more specific, |
From @TIHan on July 26, 2018 22:21 I have a fix for this coming. It is a bug in the F# language service. |
This ensures the F# package is loaded for CPS only projects in a solution. Seems this was an oversight. Independent of dotnet/fsharp#5391, ensuring the F# package load fixes this issue: dotnet/fsharp#5395 - and it probably fixes other issues that we haven't discovered as a result of not loading the package.
This has been resolved. |
From @0x53A on July 25, 2018 12:20
Create a new F# project
Console App (.NET Core)
Let VS do its thing, after a few seconds everything works. Do a build for good measure.
Close VS and delete the
.vs
directoryreopen the solution: build works, but editor features don't
Restart VS one more time, after that, everything works again
Copied from original issue: dotnet/project-system#3788
The text was updated successfully, but these errors were encountered: