Often when I want to search through my code in Visual Studio, I know the thing I\'m looking for is in some C# code. However, as I\'ve used the same variable name in a JavaSc
I like to exclude js files by using the following search:
*.a*;*.cs*;
Most of the times, I end up searching for stuff in aspx, cs, cshtml files so this is quite helpful.
Notice how I use *.cs* instead of *.c* since the latter would select jquery custom files such as jquery.custom1234.js (which I usually use in most of my projects), of course if you don't you could just use *.c*.