Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 879
Iman Bahrampour Avatar asked Oct 19 '17 19:10

Iman Bahrampour


People also ask

How do I configure Solution Explorer in Visual Studio?

By default, the Solution Explorer tool window appears as a pane in the upper-right side of the Visual Studio integrated development environment (IDE). If you don't see the Solution Explorer tool window, you can open it from the Visual Studio menu bar by using View > Solution Explorer, or by pressing Ctrl+Alt+L.

How do I change the position of Solution Explorer in Visual Studio?

If the window is docked, drag it so that it floats somewhere where you'd like to position it. Press F5 to put Visual Studio into debugging mode. Adjust the position of the Autos, Call Stack, and Output debugging windows the way you want them.

What is Solution Explorer in Visual Studio?

Solution Explorer is a special window that enables you to manage solutions, projects, and files. It provides a complete view of the files in a project, and it enables you to add or remove files and to organize files into subfolders.


1 Answers

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.

like image 143
xr280xr Avatar answered Oct 12 '22 03:10

xr280xr