How to see error logs of intellisense in Visual Studio 2019?

Viewed 394

Does Visual Studio have the Intellisense error logs? If so, how to see them?

1 Answers

If you are working with C++, you can set Logging Filter to 8 in Tools > Options > Text Editor > C/C++ > Advanced > Diagnostic Logging. The link: Validating Project Settings via Diagnostic Logging

If it is non-C++ project, you can just see the intellisense errors in error list window.

Related