vote up 1 vote down star
1

At some point "Find All References" feature got broken for a single solution that I have. It works in all other solutions. For this one, it always returns "Search found no results"

What could be the problem?

flag

Problem located. It was caused by the following line in the AssemblyInfo.cs: [assembly: AssemblyKeyFileAttribute("myKey.snk")] Removing it did the trick. Not sure why. – AngryHacker Jun 19 at 23:50
@Rich B - good edit / rescue; appreciated. – Marc Gravell Jun 21 at 16:56
The second edit was pretty funny though. – AngryHacker Jun 22 at 15:07
I still wonder why I was suspended for 2 days given that OP liked my edit... hmm – Sasha Jun 24 at 17:06

2 Answers

vote up 4 vote down check

In the old days (VC6 :) ) this type of problem was often fixed by deleting the .ncb file and letting it be rebuilt automatically. Not sure if this is still true in VS2005/8.

link|flag
+1, deleting the NCB should fix this on VS 2k5 and 2k8 as well. – Not Sure Jun 19 at 21:21
vote up 1 vote down

I would kill all instances of Visual Studio and try again. If this doesn't work, I would imagine that there really are no references to the type or member you are looking for.

Since this feature is working for other solutions I find it hard to believe that this is an issue with the IDE itself. I think the most likely explanation is that the IDE is correct and you actually have no references.

Do you have two types that are similarly named but not actually the same type? Can you find the references by text search?

link|flag

Your Answer

Get an OpenID
or

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