Reputation: 6800
In the visual studio solution explorer, when a word is written in lower case then
the solution explorer filters the word as not case-sensitive but if one letter is
written in upper case then it will be case-sensitive.
Can I customize case-sensitive options for either upper or lower cases?
For Example, can I disable case-sensitive for uppercase?
Upvotes: 34
Views: 6872
Reputation: 250
Visual Studio 2022 has it inbuild user "CTRL + SHIFT + T" to open search and it will search for files and code in single window and search here is case insensitive
Upvotes: 2
Reputation: 341
If you want to search without match case, in search field type only lowercase characters. So characher case will ignore
Upvotes: 24
Reputation: 13302
As far as I can tell, there is no setting to change this behavior but understanding it seems to be the most important thing.
I'm in Visual Studio Professional 2017 v15.9.14. I've been thinking I'm going crazy thinking the search seems to sometimes be case-sensitive and sometimes not. I finally realized that for file names, if I type the search string all lowercase, then it does a case-insensitive search. As soon as I add a capital to my search string, it switches to case-sensitive.
For code members, it seems to be always case-insensitive.
Upvotes: 37
Reputation: 1635
You can use ReSharper short-cut: "CTRL + SHIFT + T" to filter instead of Visual Studio. Moreover I think there no way to customize case-sensitive options of VS behavior.
Upvotes: 0