Is there a way in Visual Studio to find usages of a CSS class? Right now I have to do search the entire project to find all usages. Sometimes its hard if the class is named as something generic like "title". I will get all of these search results that have nothing to do with usage of that class.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I don't know of any built-in way of doing this in Visual Studio, but some regex magic might do the trick. Try searching for this:
|
|||||
|
|
By usages of a CSS class, do you mean:
If so, then you could use the regex search in VS to find these:
Edit: See @Martinho Fernandes response for a working regex. |
|||||||
|