Solution-wide code inspections
Most of ReSharper's code inspections only need the source code of a single file to detect code issues. In addition to these inspections, ReSharper provides solution-wide inspections for code issues which are only detectable in the scope of the entire solution, for example, to detect an unused non-private member ReSharper needs to analyze the entire solution.
For the solution-wide inspection to work, you need to enable at least one of the following:
Simplified global usage checking: select Show unused non-private type members when solution-wide analysis is off on the page of ReSharper options (Alt+R, O).
Solution-wide analysis: select Enable solution-wide analysis on the page of ReSharper options (Alt+R, O).
Note that even if the reported symbol has no direct usages in your solution, there could be cases where it is used indirectly — for example, via reflection — or it could just be designed as public API. In all those cases you would want to suppress the usage-checking inspection for the symbol in one of the following ways:
The recommended way is to decorate the implicitly used symbol with a code annotation attribute. There are two attributes for this purpose: [UsedImplicitly] and [PublicAPI], which are functionally similar, but let you and your teammates understand how the symbol is actually used.
You can also suppress usage-checking inspections with any custom attribute. To do so, mark the definition of that attribute with the [MeansImplicitUse] attribute.
And finally, you can suppress a specific usage-checking inspection as any other code inspection with a suppression comment or a suppression attribute.
Similarly to any other inspection, you can also disable or change severity level of any solution-wide inspection. This can be done right from the Alt+Enter menu on a code issue that the inspection highlights. Alternatively, you can disable/enable or change severity levels of inspections on the page of ReSharper options (Alt+R, O) — solution-wide inspections are marked with the Non-private accessibility label. Note that you cannot set the 'Error' severity for solution-wide inspections.
When solution-wide analysis is enabled, issues detected by the solution-wide inspections are highlighted in the opened files in the same way as other issues, and they also appear in the Inspection Results window when you run code inspection in specific scope. However, they do not appear in the Errors/Warnings in Solution window.
If necessary, you can disable solution-wide inspections or only enable solution-wide inspections on internal symbols for specific projects. To do so, use the Solution-Wide Inspections selector in the Project Item Properties popup, which you can invoke by selecting Edit project item properties from the context menu of the project in the Solution Explorer.
Note that independently of the value in this selector, solution-wide inspections would be disabled if solution-wide analysis is disabled in ReSharper options.
ReSharper provides the following solution-wide inspections:
Inspection | Language | Default Severity |
---|---|---|
Auto-property can be made get-only (non-private accessibility) | C# | |
Class can be made sealed (non-inheritable) (non-private accessibility) | C# | |
Convert local variable or field into constant (non-private accessibility) | C# | |
C# | ||
C# | ||
C# | ||
Member can be made static (shared) (non-private accessibility) | C# | |
Parameter type can be IEnumerable<T> (non-private accessibility) | C# | |
Property can be made init-only (non-private accessibility) | C# | |
Return type can be IEnumerable<T> (non-private accessibility) | C# | |
Introduce optional parameters (non-private accessibility) | C# | |
Abstract or virtual (overridable) event is never invoked | C# | |
Auto-property accessor is never used (non-private accessibility) | C# | |
C# | ||
Collection content is never queried (non-private accessibility) | C# | |
C# | ||
Event is never subscribed to (non-private accessibility) | C# | |
Non-accessed field (non-private accessibility) | C# | |
Non-accessed positional property (non-private accessibility) | C# | |
Suspicious type conversion or check | C# | |
Unassigned field (non-private accessibility) | C# | |
Redundant global using directive | C# | |
Class with virtual (overridable) members never inherited (non-private accessibility) | C# | |
Entity is only used to capture its name (non-private accessibility) | C# | |
Method return value is never used (non-private accessibility) | C# | |
Parameter is only used for precondition check (non-private accessibility) | C# | |
Parameter output value is always discarded (non-private accessibility) | C# | |
Redundant method overload (non-private accessibility) | C# | |
C# | ||
Type member is never accessed via base type (non-private accessibility) | C# | |
C# | ||
Type member is only used in overrides (non-private accessibility) | C# | |
Unused parameter (non-private accessibility) | C# | |
Virtual (overridable) member is never overridden (non-private accessibility) | C# | |
Auto-property can be made get-only (non-private accessibility) | VB.NET | |
Class can be made sealed (non-inheritable) (non-private accessibility) | VB.NET | |
Convert local variable or field into constant (non-private accessibility) | VB.NET | |
VB.NET | ||
VB.NET | ||
VB.NET | ||
Member can be made static (shared) (non-private accessibility) | VB.NET | |
Parameter type can be IEnumerable<T> (non-private accessibility) | VB.NET | |
Property can be made init-only (non-private accessibility) | VB.NET | |
Return type can be IEnumerable<T> (non-private accessibility) | VB.NET | |
Abstract or virtual (overridable) event is never invoked | VB.NET | |
Auto-property accessor is never used (non-private accessibility) | VB.NET | |
VB.NET | ||
Collection content is never queried (non-private accessibility) | VB.NET | |
VB.NET | ||
Event is never subscribed to (non-private accessibility) | VB.NET | |
Non-accessed field (non-private accessibility) | VB.NET | |
Non-accessed positional property (non-private accessibility) | VB.NET | |
Suspicious type conversion or check | VB.NET | |
Unassigned field (non-private accessibility) | VB.NET | |
Class with virtual (overridable) members never inherited (non-private accessibility) | VB.NET | |
Entity is only used to capture its name (non-private accessibility) | VB.NET | |
Method return value is never used (non-private accessibility) | VB.NET | |
Parameter is only used for precondition check (non-private accessibility) | VB.NET | |
Parameter output value is always discarded (non-private accessibility) | VB.NET | |
VB.NET | ||
Type member is never accessed via base type (non-private accessibility) | VB.NET | |
VB.NET | ||
Type member is only used in overrides (non-private accessibility) | VB.NET | |
Unused parameter (non-private accessibility) | VB.NET | |
Virtual (overridable) member is never overridden (non-private accessibility) | VB.NET | |
JavaScript | ||
JavaScript | ||
Non-accessed field (non-private accessibility) | ASP.NET | |
ASP.NET | ||
XAML | ||
XAML | ||
Non-accessed field (non-private accessibility) | XAML | |
XAML | ||
XAML | ||
Non-accessed field (non-private accessibility) | HttpHandler or WebService | |
HttpHandler or WebService |