Iman Bahrampour
Iman Bahrampour

Reputation: 6800

disable case sensitive in visual studio solution explorer

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

Answers (4)

Sandeep Kumar Narware
Sandeep Kumar Narware

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

Alexandr
Alexandr

Reputation: 341

If you want to search without match case, in search field type only lowercase characters. So characher case will ignore

Example VS2022

Upvotes: 24

xr280xr
xr280xr

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

Rai Vu
Rai Vu

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

Related Questions