IDE Buggy ! errors un-reported AND non-errors reported

Christ Kennedy 196 Reputation points
2021-01-04T18:33:22.857+00:00

for the last month and a half (two updates) my IDE has been driving me bonkers.

it often reports 'errors' that are not errors.

after wasting time trying to figure out what its problem is, I eventually kill the VS2019-IDE and launch it again to discover I was right all along the IDE is BUGGY!

it sometimes reports errors via the 'error list' other times I have to read it on the 'output' page because the 'error list' shows NOTHING.

when the most recent update (a few weeks ago) came out, i thought, "Finally!, they fixed it!" but apparently not.

I've tried uninstalling and reinstalling VS2019 3x and it still hasn't gone away?

what is wrong with my IDE?

Visual Studio
Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
4,747 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,458 questions
{count} votes

Accepted answer
  1. Michael Taylor 49,686 Reputation points
    2021-01-05T21:21:44.477+00:00

    The error you posted is coming from LiveShare extension. You should use the Report a Bug feature in VS to report the issue directly to the VS team. Capture the issue using the recording tool if possible and that will send them all the data they need to hopefully identify the issue.

    It is possible for the output window and error list to be out of sync. The Error List window is using a combination of sources including the background compilation to report issues and some of these are tied to the windows that are open. The Output window only shows errors when you compile so assuming your initial screenshot indicates a compiler error but the source code doesn't have one would indicate a disconnect.

    However in your error screenshot the compiler seems right to me but you didn't post the entire error message so it is hard to tell. The compiler is complaining about line 851 which is where you call FontFile_Read with no parameters. The method itself requires a single parameter so the function call is bad. Since I cannot see the entire compiler error it is hard to tell whether the compiler is reporting the right error or not though.

    In many cases where I see disconnected behavior in VS I find that blowing away the .vs folder in the solution directory and restarting VS solves some problems. VS caches data in this folder and it can get corrupted between updates of VS.

    Irrelvant, you should use the Report a Bug feature in VS to report issues with VS. They are the correct people to help diagnose and fix the issues you're seeing.


0 additional answers

Sort by: Most helpful