-
Notifications
You must be signed in to change notification settings - Fork 805
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
VS2017 RC - Project-wide analysis should not be enabled #1856
Comments
I'm trying to port virtual file system we use in VFPT vasily-kirichenko@5185d76 It tracks open documents and pass to file system dirty buffers content. I'm stuck on fitting it to MEF as |
OK, it seems to work, but |
@vasily-kirichenko Can you share your branch? We may have to delay looking at this until F# 4.2, though it would be great to get a prototype done |
yes that's what I meant, thanks |
Mistakenly auto-closed |
This implements signature help (method overload tips and parameter info). dotnet#1767. Also fixes dotnet#1856 This is mostly just wiring up the necessary things and copying across some of the nitty-gritty detail from the old language service. Some additional information was propagated such as HasParamArrayArg.
VS2017 RC currently enabled project-wide analysis based on ParseAndCheckProject and shows red-squiggly errors based on the results
See vsintegration\src\FSharp.Editor\ProjectDiagnosticAnalyzer.fs
This is wrong, because this method checks using saved files on-disk, not the current contents of buffers. This results in erratic, persistent red-squiggly errors being shown in half-edited unsaved files in the IDE.
We should just disable this feature for now
The text was updated successfully, but these errors were encountered: