If I create a debugging solution and I have
#if !DEBUG public void DoA() { DoB(); } #endif public void DoB() { }
When I use resharper to do Find Usages in DoB, nothing was found. The purpose of the search is to find all ways to use a particular method, and not just those that are used in a specific assembly configuration.
This is something I can turn off, since refactoring with Resharper is less predictive.
Resharper build: 5.1.3000.12
source share