15 Tips and Tricks to Increase Your Productivity in Visual Studio 2019 | Syncfusion Blogs
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (173).NET Core  (29).NET MAUI  (203)Angular  (107)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (40)Black Friday Deal  (1)Blazor  (211)BoldSign  (13)DocIO  (24)Essential JS 2  (106)Essential Studio  (200)File Formats  (65)Flutter  (132)JavaScript  (219)Microsoft  (118)PDF  (81)Python  (1)React  (98)Streamlit  (1)Succinctly series  (131)Syncfusion  (897)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (50)Windows Forms  (61)WinUI  (68)WPF  (157)Xamarin  (161)XlsIO  (35)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (146)Chart  (127)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (618)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (39)Extensions  (22)File Manager  (6)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (501)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (42)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (10)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (381)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (17)Web  (582)What's new  (323)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
Increase Your Productivity

15 Tips and Tricks to Increase Your Productivity in Visual Studio 2019

Introduction

Visual Studio 2019 is packed with new features for smartly handling code for different projects. This blog compiles tips and tricks that will make you more productive when using Visual Studio 2019. They are:

Code Cleanup

Visual Studio 2019 provides on-demand formatting for a code file, including code style preferences, through the Code Cleanup feature. To run Code Cleanup, click the broom icon at the bottom of the editor, or press Ctrl+K and Ctrl+E.

Code Cleanup Button.
Code Cleanup Button

Improve performance when loading a project

To improve the performance of a project or solution, navigate to Tools >  Options > Project and Solutions, and then clear the Restore Solution Explorer project hierarchy state on solution load check box. Doing so will restore and resume the existing state of the solution when opening the VS 2019 IDE, improving the solution’s load performance.

Improving Project Load Performance.
Improving Project Load Performance

Search in Watch window

The Watch window provides an advanced way to examine a variable. To watch a variable while debugging, add it to the Watch window by right-clicking the variable or the DataTip and selecting Add Watch. Now, the variable appears in the Watch window.

In Visual Studio 2019, we can see the search feature inside the Watch window. Using this, you can quickly identify properties.

Also, you can find all the possible format specifiers by double-clicking the property row and typing, after the property name. The following screenshot illustrates this.

Search Feature in the Watch Window.
Search Feature in the Watch Window

Syncfusion’s Blazor components suite is the expert’s choice for building modern web apps.

Track active file inside Solution Explorer

This option reduces your development time when working with large projects. When you work on a project that has a large number of files, it is difficult to find the current active file in the Solution Explorer—you have to scroll through the entire Solution Explorer to find the active file. To find the current active file in the editor inside the Solution Explorer, just select the Sync with Active Document option.

Sync with Active Document Option.
Sync with Active Document Option

How to track the active file automatically

You can track the active file automatically by enabling the corresponding option.

Navigate to Tools > Options > Projects and Solutions > General, and then select the Track Active Item in Solution Explorer check box to turn on this feature.

Track Active Item Option.
Track Active Item Option

Cycle Clipboard Ring

Navigate to Edit > Cycle Clipboard Ring or press Ctrl+Shift+V to perform the multiple-paste action.

When you press Ctrl+C (copy action) or Ctrl+X (cut action) in Visual Studio to copy or cut text content or a code block, Visual Studio keeps the last 15 copied or cut contents in its memory. Cycle Clipboard Ring allows you to cycle through your clipboard and paste the content you need.

You can just copy or cut content 10 times and then paste any of the copied or cut contents using Ctrl+Shift+V. Keep pressing this key combination to cycle through the paste content until you find what you want to paste.

Remove and sort namespaces

It is important to maintain coding standards during development. Often, we forget to maintain code standards. We may include unused namespaces, not arrange namespaces in the proper order, or not put system directives at the top. Visual Studio now has an option to correct these mistakes easily.

In the code editor, right-click to show the context menu, where you can find the Remove and Sort Usings option. Click this option to remove the unwanted namespaces and sort the namespaces in ascending order.

Remove and Sort Usings Context Menu Option.
Remove and Sort Usings Context Menu Option

But you will face another type of coding standard issue even after using this option: system directives should be placed first. Keeping the System namespaces first in your code is a best practice. This issue can be overcome by setting an advanced option. Navigate to Tools > Options > Text Editor > C# > Advanced and select the Place ‘System’ directives first when sorting using the check box to turn it on.

Automatically Keeping System Directives First Option.
Automatically Keeping System Directives First Option

Everything a developer needs to know to use Blazor components in the Blazor app is completely documented.

Track miscellaneous files

Sometimes, we need to group external files that are not inside the project folder or source or that are added to the solution file. These external files can be used as references in the development stage. So, Visual Studio has an option to group these files under the Miscellaneous folder. With the option enabled, external files opened through the Visual Studio code editor are grouped under the Miscellaneous folder, which is available in the Solution Explorer.

By default, this option is disabled. To enable it, navigate to Tools > Options > Environment > Documents, and then select the Show Miscellaneous files in the Solution Explorer check box.

Enabling the Miscellaneous Folder.
Enabling the Miscellaneous Folder

You can restrict the number of files saved in the folder as well. In the previous screenshot, we set the count as 5, so only five external files will be listed under the Miscellaneous folder.

External Files in the Miscellaneous Folder.
External Files in the Miscellaneous Folder

Run to Cursor

Run to Cursor can help you debug your code more efficiently by directly stopping the debugger where you point your cursor. Using this, you can avoid step-by-step debugging until you reach the point where you really want to start the debugging. When you select the Run to Cursor option, Visual Studio starts the debugger automatically, and execution is stopped at the selected line.

In the code editor, right-click the line where you want to stop the debugger. Select the Run to Cursor option in the context menu.

Run to Cursor Option.
Run to Cursor Option

You can also use the shortcut key combination Ctrl+F10.

Reusable code in Toolbox

Visual Studio provides a great feature that lets you place code snippets inside the Toolbox. Just select a code snippet and drag the selected snippet to the General tab.

This feature will be very useful when you use a code snippet in multiple files or places. When working on a project, you’ll often copy code from your current page and paste it into another page or location. You lose time scrolling and finding the files or places where you want to paste common code snippets.

Visual Studio provides space in the Toolbox where you can keep common code. You can drag a code snippet from the Toolbox and drop it wherever you want.

To keep your common code in the Toolbox, open the Toolbox and expand the General tab. You can drop your selected code blocks by dragging them from the code editor. In the following screenshot, we have selected three lines of code and dragged them to the General tab.

Saving Code in the Toolbox.
Saving Code in the Toolbox

You can also rename your code blocks for easy reference. In the following screenshot, I have renamed the code block as TestMethod. I can drag TestMethod from the Toolbox to any page or any place to use it.

Renaming a Saved Code Block.
Renaming a Saved Code Block

Explore the different application UIs developed using Syncfusion Blazor components.

Show the Output window automatically

Visual Studio allows setting the Output window to be opened automatically each time you start a build.

Navigate to Tools > Options > Project and Solutions, and then select the Show Output window when the build starts check box.

Enabling Automatic Show Output Window Option.
Enabling Automatic Show Output Window Option

Run web application in multiple browsers

Usually, we run our application in any browser to ensure it functions correctly. But, as web developers, we need to ensure the application runs correctly in all major browsers. Visual Studio provides the option to run an application in multiple browsers simultaneously. Select the Browse With option in the browser list drop-down to do this. In the dialog that appears, you can see all the browsers plus the one set as your default. You can select all the browsers you want to run the application in and click Set as Default. If you click the Browse button at the bottom of the dialog, your web application will simultaneously start on all selected browsers.

Choosing Browsers to Run an Application.
Choosing Browsers to Run an Application

Quick launch

You can quickly navigate to any file, class, type, member, or symbol declaration using the Go To option in Visual Studio. To open the Go To window, press Ctrl+T or Ctrl+Comma (,) or navigate to Edit > Go To. Go to All enables you to jump to any file, type, member, or symbol declaration quickly.

Go to All Search Bar.
Go to All Search Bar

Search

You can reduce development time by quickly finding the files you need. You can use the Visual Studio Search Files option to reduce the amount of time spent on manual lookups.

To search inside the current file, press Ctrl+F.

Search in Current File.
Search in Current File

To search inside the current project, press Ctrl+Shift+F.

Search in Current Project.
Search in Current Project

See how Syncfusion Blazor components can be transformed into beautiful and efficient applications.

Use keyboard shortcuts

Visual Studio keyboard shortcuts are the best way to work more efficiently and speed up your development. You can find more useful keyboard shortcuts listed on this website.

The following are some of the most commonly used shortcuts.

ShortcutAction
Ctrl+XCuts the selected item to the clipboard.
Ctrl+CCopies the selected item to the clipboard.
Ctrl+VPastes the item from the clipboard
Ctrl+ZUndo the previous action.
Ctrl+YRedo the previous undo action.
Ctrl+SSaves the selected file.
EscCloses opened menu or dialog.

Vertical selection

If you need to select multiple lines vertically, place the cursor at the beginning of the first line, press and hold Alt, and then select the lines downward.

Vertical Selection.
Vertical Selection

Collapse all

Press and hold Ctrl, and then press M and O continuously to collapse all your code.

Collapsing Code.
Collapsing Code

Refer to this blog post for some tips for beginner-level developers using Visual Studio.

Conclusion

In this blog post, we’ve seen many ways to increase your productivity in Visual Studio 2019. We hope this blog helps you work better with Visual Studio 2019.

Syncfusion provides over 1,000 custom controls to ease the work of the developers on the following platforms:

Please let us know in the comments below if you have any questions or require clarifications about our components. You can also contact us through our support forumsupport portal, or feedback portal. We are happy to assist you!

Recommended resources

Tags:

Share this post:

Comments (3)

For the Run To Cursor feature, when you don’t have yo right click, you can just click the green little icon that appears at the start of any line you’re hovering over.

Also, ctrl+q is a nice shortcut few people use. It allows you to search for any VS action so you don’t have to remember many shortcuts. For example, you can use ctrl+q and type ‘code for” and it will show ‘code format’ action in results.

Very nice shortcut, thanks <3

Abroad Assistant
Abroad Assistant

I found these shortcuts very useful! Thanks a lot!

Comments are closed.

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed