Questions tagged [find-all-references]
30 questions
50
votes
4 answers
How to know which other projects refer to a certain project in Visual Studio?
In Visual Studio, for a class, a field, a method, I can just right click and say "Find All References" to see who is calling my code.
But there is no similar thing for a project.
What is the simplest way to do so?
Do I have to check every project to…

Cui Pengfei 崔鹏飞
- 8,017
- 6
- 46
- 87
11
votes
1 answer
Visual Studio-> Find all references-> Looking for symbol in XAML files
Is there a way to prevent "Find all references" from searching in XAML files? Searching the XAML files is painfully slow.

Jeremy Danyow
- 26,470
- 12
- 87
- 133
8
votes
1 answer
Enlarge find all references font size in Visual Studio 2017?
So MS added the new style for "find all references", but now I cannot find how to change the font size of the "Code" column! I want it bigger, but when I change the Environment font it only affects the other columns (File, Project, etc.). Is there…

BornToCode
- 9,495
- 9
- 66
- 83
5
votes
5 answers
Visual Studio 2010 Solution Find all References Not Working
I have a Visual Studio 2010 Solution that was imported from a Visual Studio 2008 solution that the Find all References does not work on. I've tried doing some searches on Google to try and figure this out but have come up empty handed.
The find…

Jeremiah
- 91
- 1
- 1
- 4
4
votes
1 answer
Find all reference on all projects in solution
My solution contains multiple projects (say P1, P2). In project dependencies, I set P2 to depend on P1, so P2 uses some classes in P1. When I do a Find All References on a class/method of P1, the result shows only the occurences in P1; not the…

David
- 5,356
- 2
- 26
- 39
4
votes
1 answer
Finding all references to an Object in Idea
Is there a shortcut key or an option for Intellij-IDEA IDE to find all references to a Class in a particular project? For example, I have created my own Class to hold a String and an int and I have made references through the project. The project is…

BC2
- 892
- 1
- 7
- 23
3
votes
0 answers
Visual Studio keeps resetting window layout to default
I have VS Community 2017 15.9.3 which I use with Unity.
I have a window layout saved where the results window for 'find all references' is on the right of the screen.
If I apply my window layout (Ctrl + Alt + 1) and 'find all references' then the…

Guye Incognito
- 2,726
- 6
- 38
- 72
3
votes
4 answers
'Find all references' not working in visual studio 2005
I was able to do 'Find all reference' a couple of hours ago, and now suddenly it stopped working. When I do 'Find all references', its always says 'Search found 0 references'. I have reinstalled visual studio but the problem still exists.
Anyone has…

ata
- 8,853
- 8
- 42
- 68
3
votes
4 answers
"Find All References" broken in one solution
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?

AngryHacker
- 59,598
- 102
- 325
- 594
2
votes
2 answers
'Find All References' on classes that implement IDisposable in VS 2015 VB.NET does not work
In VS 2015, when I click 'Find All References' on a class definition for a class that implements IDisposable, it returns MyBase.Finalize() for every class which implements IDisposable.
NOTE: This happens when I click 'Find All References' on the…

Ninja Starfish
- 21
- 4
1
vote
1 answer
rails How to migration find_all_by_
Hi I migrate an app from Rails 2 to Rails 7.04.
I don't see how to rewrite :
self.accepted_roles.find_all_by_name(role_name).any? { |role| role.users }
users = self.accepted_roles.find_all_by_name(role_name).collect { |role| role.users…

jean-luc
- 7
- 4
1
vote
1 answer
I can't scrape the information inside that div
the list Li should have the 116 elements but instead it has 0 elements
import requests
from bs4 import BeautifulSoup
url='https://www.profile.nl/zoekresultaten/banden?size_width=205&size_height=60&size_inch=16'
profile= requests.get(url)
if…

wissem Ayat
- 11
- 1
1
vote
0 answers
How to create index files for a new language to support Find References of methods?
Suppose I have a datastructure of a filesystem that contains the basic information like the name, size & extension of all the files inside that directory. For every Directory & SubDirectory in my external harddrive, I have a program to create the…

Anshuman Chatterjee
- 834
- 5
- 21
1
vote
1 answer
Find all references with WCF OperationContract and DataContracts
I'm trying to figure out if there's a way to "Find all references" (using the VS feature, as opposed to Control+F entire solution). when it comes to WCF Data and OperationContracts. In case that is unclear:
namespace WcfTestReferences
{
class…

Kritner
- 13,557
- 10
- 46
- 72
1
vote
1 answer
Find all references doesn't locate member references in other .NET projects of differing language
I have a VS 2013 solution with one VB.NET ASP.NET project which references several c# class library projects (not DLLs) within the same solution. I made lots of changes to logic within some of the method overloads in one of the c# projects. Since…

oscilatingcretin
- 10,457
- 39
- 119
- 206