- Mastering Visual Studio 2017
- Kunal Chowdhury
- 316字
- 2021-07-15 17:26:35
Open folders in a convenient way
In Visual Studio 2017, Microsoft has provided a convenient way to work with the code base. You can now directly open a folder instead of opening the solution/project explicitly. When you open a folder, you can easily navigate to all files by structural folders using the Solution Explorer. Not only this, but you can also build your projects from the Solution Explorer; right-click on context menu.
In order to open a folder, you can click on File | Open | Folder... from the Visual Studio menu or the Open Folder link present on the Start Page. Alternatively, you can press the keyboard shortcut: Ctrl + Shift + Alt + O:

The folder view also supports the following:
- Searching across the code in your folder with the Go To (Ctrl + ,) command.
- Scoping the Solution Explorer folder view to subfolders. To scope your current context to a specific project/folder, right click on it and then click on Scope To This from the context menu.
- Opening folders in Explorer or the Command Prompt from the Solution Explorer itself.
- Easily toggle between solutions with the Solution selection dropdown.
- Configuring the debug and launch settings with launch.json. Right-click on a debuggable file and select Debug and Launch Settings.
- Configuring tasks and customizing the build with tasks.json. Right-click on any file and select Configure Task Settings.
- Launch.vs.json and tasks.vs.json have IntelliSense in the JSON editor.
- Integration with supported source control repositories. This will provide you the current status of the file. As shown in the following screenshot, a + or a tick mark provides you the status of the local file in comparison with the version available in source control repository:

You can also open a folder from the Windows Explorer window by right-clicking on any folder and then clicking the Open in Visual Studio context menu item, as shown in the following screenshot:

- C程序設(shè)計簡明教程(第二版)
- PWA入門與實踐
- Beginning Java Data Structures and Algorithms
- FLL+WRO樂高機器人競賽教程:機械、巡線與PID
- NoSQL數(shù)據(jù)庫原理
- OpenCV 4計算機視覺項目實戰(zhàn)(原書第2版)
- 微服務(wù)架構(gòu)深度解析:原理、實踐與進(jìn)階
- Java編程從入門到精通
- 平面設(shè)計經(jīng)典案例教程:CorelDRAW X6
- Java設(shè)計模式深入研究
- Learning TypeScript
- Access 2010數(shù)據(jù)庫教程(微課版)
- C#程序開發(fā)教程
- JavaScript高級程序設(shè)計(第3版)
- Elixir Cookbook