I am trying to show ReSharper warnings inside of the Visual Studio “Error list” window, but it seems that only errors are shown inside of the window. Is there a way to show ReSharper warnings inside of the “Error list” window in vanilla ReSharper?
Example:
if (1 == 1) ;
This code generates two warnings:
CS0642 Possible mistaken empty statement
Similar expression comparison
But the “Error list” window just shows the Visual Studio one.
Notes:
I don't know how to put R# quick-fixes (such as "Similar expression comparison") into Visual Studio Error List window.
However, R# has its own "error list". Follow the top menu ReSharper -> Inspect -> Code issues in Solution
, which opens "Inspection Results" window with the the same functionality and even better.
And yes, "Inspection Results" contains both "Possible mistaken empty statement" and "Similar expression comparison" messages: