Reputation: 8086
In some cases (Interface and implementation in different projects of the same solution) Ctrl + F12 (go to implementation) does not work. It says "Implementations of IYourService were not found". The same thing could happen when you want to implement some member. Clean + rebuild could help but not always.
It seems that Resharper 7 does not have such problem.
Have somebody met that issue? How to fix it?
Thanks in advance!
Upvotes: 19
Views: 2234
Reputation: 511
I've faced same problem with a quite difference for only one solution which is in the TFS online. Resharper could not find implementations in the only one project in my solution. And this same situation was occuring on other team users machine for same solution.
So I've tried to this way and it worked for me:
Resharper > Options > Environment > General > Store Caches in
User local settings folder
to Solution folder
Save
buttonUpvotes: 2
Reputation: 6272
I tried clear the Resharper Cache: Resharper
--> Options
--> Environment
--> General
--> Clear Caches
.
Then I close and reopen the solution to let the cache rebuild.
It works with Resharper 8.1 build.
Upvotes: 14
Reputation: 1492
We had the same problem and it turned out that something in our MVC project that referenced the library was causing it. After recreating the MVC project with MVC 5, the problem disappeared.
Upvotes: 0