I just installed SP1 for VS2010, and since then I get error messages from Resharper for stuff that used to work and be ok for Resharper (5.1) before.

The error messages are "Cannot resolve symbol 'Eval'" and some other methods other than Eval.

How do I solve this? Is there a fix? Is there some resharper cache that I must delete/clear?

(The code compiles and runs as usual)

Thanks,

link|improve this question

71% accept rate
Is your code compiling correctly? – Daniel Hilgarth Apr 4 '11 at 13:27
yes. (edited question) – dontomaso Apr 4 '11 at 13:32
feedback

3 Answers

up vote 9 down vote accepted

I would try deleting the _ReSharper.{SolutionName} directory completely if clear cache fails.

You might want to close VS2010 before you do that.

EDIT: Try this only if @Andrew Finnell solution doesn't work.

link|improve this answer
Yes, that solved the problem. Thanks! – dontomaso Apr 5 '11 at 16:08
I have my caches stored in the system temp folder. Start->Run "%TEMP%" without quotes. I deleted all of the ReSharper folders there, even those unrelated to the solution having the issue. All of a sudden though ReSharper does seem to be using MUCH more memory for this solution. It was usually just over 100MB, but I have seen it hovering around 350+. Deleting these folders did not resolve the problem for me BTW. – bdwakefield Jul 6 '11 at 20:06
@bdwakefield If you have enabled the "Solution-widde analysis, ReSharper is probably re-indexing your solution. It takes a few minutes. – Julien Bérubé Jul 17 '11 at 20:29
@Julien I do have solution wide analysis enabled. This situation was occurring for about a week. I haven't looked in the past few days but it seems to be down more around 130MB for that solution. – bdwakefield Jul 18 '11 at 17:38
We don't use Solution-wide analysis even though I think it could be a helpful tool. It straight cripples our machines here. Recently we upgraded to R#6 and I am still seeing this issue at times. It also appears to be an issue for others as well. devnet.jetbrains.com/message/… – bdwakefield Nov 1 '11 at 14:35
feedback

Try:

Resharper Menu -> Options -> General -> Clear Cache button
link|improve this answer
Thanks. I tried it, but the same problem is still there. – dontomaso Apr 4 '11 at 16:33
feedback

I had this problem in spades in my multi-project VS solution. Tried Julien + Andrew's solutions and they did not resolve the issue. But everything compiled just fine and worked as normal -- it was simply the "Errors in Solution" that kept showing the errors (which also showed up when you looked at the code in the right-hand-ReSharper-margin).

It turns out I had inadvertently deleted the web.config file in one of the solution's web projects during some version control operations. Who knew that thing was important?

I restored the web.config file, cleared the cache and deleted the R# cache directories and then rebuilt all of the projects individually and the issues went away.

Phew!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.