{"id":2387,"date":"2022-05-17T13:54:43","date_gmt":"2022-05-17T17:54:43","guid":{"rendered":"https:\/\/blog.wholetomato.com\/?p=2387"},"modified":"2023-11-21T04:57:58","modified_gmt":"2023-11-21T08:57:58","slug":"12-helpful-tips-for-doing-visual-studio-productivity","status":"publish","type":"post","link":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/","title":{"rendered":"12 Helpful Tips For Visual Studio Productivity"},"content":{"rendered":"\r\n<p>Visual Studio provides a lot of useful tools to help programmers greatly simplify the software development process. In this article, we will learn 12 helpful tips for increasing <a href=\"https:\/\/www.wholetomato.com\/\">Visual Studio productivity<\/a> that you may not know about, but that will be very useful for you.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">#1 Navigation through the elements of the project<\/h2>\r\n\r\n\r\n\r\n<p>In a large project, there are a lot of classes and methods, which greatly complicate the process of finding the right place in the code for you. Visual Studio provides special features to simplify the work with such projects.<\/p>\r\n\r\n\r\n\r\n<p>To search for class members, you can use the <em>Class Navigation<\/em> <a href=\"https:\/\/www.wholetomato.com\/blog\/2019\/05\/03\/visual-studio-2019-moves-vassistx-to-extensions-menu\/\" target=\"_blank\" rel=\"noopener\">menu<\/a> located in the upper right corner of Visual Studio. When you click on the triangle button in this menu, a drop-down list appears with a list of all members of the class. When you click on a specific member, you navigate to it in the code.<\/p>\r\n\r\n\r\n\r\n<p>To navigate through code elements, you can also use the <em>Go to All<\/em> feature. It allows you to find the desired element and filter the type of elements to search.<\/p>\r\n\r\n\r\n\r\n<p><em>Go to All<\/em> feature searches code elements through the entire project.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">#2 Navigation through definitions and implementations<\/h2>\r\n\r\n\r\n\r\n<p>If you want to look at the definition of a member implemented in some class, then this is easy enough to do. You just need to select the <em>Go to implementation<\/em> command in the context menu that opens when you right-click on the selected member. You can also use the <strong>F12<\/strong> hotkey.<\/p>\r\n\r\n\r\n\r\n<p>In some situations, it is helpful to go to some implementation of a class member. To do this, select the command <em>Go to implementation<\/em> or use the hotkeys <strong>CTRL+F12<\/strong>.<\/p>\r\n\r\n\r\n\r\n<p>Another useful feature that improves Visual Studio productivity is the possibility to find all references for the selected class member. It is easy to do using the <em>Find All References<\/em> command or <strong>Shift+F12<\/strong> hotkeys. After executing the command, a search results window will open with a list of all references. By clicking on the selected reference, you will be redirected to it in the code. Find out more about <a href=\"https:\/\/www.wholetomato.com\/blog\/2021\/05\/17\/how-to-set-up-va\/\">setting up Visual Assist<\/a>.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">#3 Browsing the Structure of the Code<\/h2>\r\n\r\n\r\n\r\n<p>With Solution Explorer, you can view the overall structure of your code. It contains information about classes, their types, and members. If you select a code element in Solution Explorer, the associated <a href=\"https:\/\/www.wholetomato.com\/blog\/2010\/08\/31\/open-file-in-solution-tip\/\" target=\"_blank\" rel=\"noopener\">file opens<\/a> and the cursor moves to the selected element in the file.<\/p>\r\n\r\n\r\n\r\n<p>You can also browse the hierarchy of method calls, search for symbols and symbol references, and so on.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">#4 Code Editor Split For Productivity<\/h2>\r\n\r\n\r\n\r\n<p>You can split the code editor vertically or horizontally. This is very useful if you need to edit code in several related files at the same time. Also, vertical groups of documents improve Visual Studio productivity on very wide screens. You can easily move files between different groups of documents.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">#5 Quick Search In Visual Studio<\/h2>\r\n\r\n\r\n\r\n<p>In Visual Studio, there is a search text box in the menu bar. You can use it for searching menu commands, dialog boxes, files, types, members, and more. To do this, just enter the keywords you want to find.<\/p>\r\n\r\n\r\n\r\n<p>Also, it is possible to filter the content of tool windows. A lot of tool windows have a search bar that you can use to find the items you need.<\/p>\r\n\r\n\r\n\r\n<p>In the\u00a0<em>Error List<\/em> window, you can use the filter to display errors only in the files currently opened in the editor, errors only in the current file, or errors only in the current project.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">#6 Conditional Debugging<\/h2>\r\n\r\n\r\n\r\n<p>In Visual Studio, you can add conditions to breakpoints. In this case, the break in the debug process occurs only if the specified condition is met. This can be especially useful when debugging loops that have a large number of elements and you only want to examine the element that matches the specified criteria.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">#7 View objects that are out of scope<\/h2>\r\n\r\n\r\n\r\n<p>When debugging applications, in the <em>Watch<\/em> window, objects are tracked by their reference names. When such a reference goes out of scope, its value in the <em>Watch<\/em> window becomes unavailable, even if the object pointed to by the reference is still active.<\/p>\r\n\r\n\r\n\r\n<p>Visual Studio provides the ability to continue tracking the state of an object outside of the scope. To do this, you need to create an object ID. Then, when the reference goes out of scope, this ID can be used to observe the state of the object.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">#8 Code Snippets Increase Productivity<\/h2>\r\n\r\n\r\n\r\n<p>An important tool for increasing Visual Studio <a href=\"https:\/\/www.wholetomato.com\/blog\/2022\/05\/12\/visual-assist-2022-2-is-here\/\">productivity<\/a> is the ability to insert code snippets into your project. Using this feature, you can automatically insert frequently used pieces of code, which significantly speeds up the process of writing code.<\/p>\r\n\r\n\r\n\r\n<p>There are a lot of ready snippets in Visual Studio. For example, snippets for creating a constructor, properties, loops, conditional operations, etc. If you often use the same piece of code in your project, then you can create your own snippet.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">#9 Extract methods and interfaces<\/h2>\r\n\r\n\r\n\r\n<p>Visual Studio provides the ability to automatically perform various actions that otherwise would take a long time if you were performing them manually.<\/p>\r\n\r\n\r\n\r\n<p>You can generate a new method from the selected part of the code using the quick action <em>Extract method<\/em>. A method will be created with all the required parameters and the code you chose. All that&#8217;s left for you to do is enter the method name.<\/p>\r\n\r\n\r\n\r\n<p>It is also easy to create interfaces from existing classes. Just click the quick action <em>Extract interface<\/em> near the class name and select the class members you want to extract to the interface.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">#10 Work with images in web applications<\/h2>\r\n\r\n\r\n\r\n<p>Visual Studio greatly simplifies working with images when developing web applications. You can drag and drop images from Solution Explorer into HTML code. In this case, the code is generated automatically. You can encode the image to base64 automatically, as well as automatically insert image height and width attributes.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">#11 Shortcuts<\/h2>\r\n\r\n\r\n\r\n<p>Visual Studio has a huge list of keyboard shortcuts that allow you to perform various actions from code navigation to code generation, refactoring, debugging, and more. Using keyboard shortcuts is the best way to improve Visual Studio productivity and speed up the coding process.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">#12 Extensions<\/h2>\r\n\r\n\r\n\r\n<p>If you are missing the standard tools that Visual Studio offers, you can install extensions. There are a lot of extensions available for Visual Studio that can be easily installed and customized to suit your needs.<\/p>\r\n\r\n\r\n\r\n<p>One of them is Visual Assist, which simplifies the process of navigating through code, writing, and debugging code, and also allows you to customize code highlighting in a way that suits you.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Ready to get started boosting your Visual Studio productivity?<\/h2>\r\n\r\n\r\n\r\n<p>In this article, we learned a lot of interesting features that improve Visual Studio productivity. <a href=\"https:\/\/www.wholetomato.com\/blog\/2022\/04\/28\/10-compelling-reasons-why-you-need-visual-assist-for-visual-studio-2022\/\">Want 10 more reasons?<\/a> We are confident that when using them, you will write code much faster and easier.<\/p>\r\n\r\n\r\n\r\n<p><a href=\"https:\/\/www.wholetomato.com\/downloads\">Head over and download the latest version of Visual Assist!<\/a><\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>Visual Studio provides a lot of useful tools to help programmers greatly simplify the software development process. In this article, we will learn 12 helpful tips for increasing Visual Studio productivity that you may not&#8230;<\/p>\n","protected":false},"author":213500342,"featured_media":2389,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_newsletter_tier_id":0,"footnotes":"","jetpack_publicize_message":"","jetpack_is_tweetstorm":false,"jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[672],"tags":[2426,78684782,726359793,6678],"class_list":["post-2387","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tips-and-tricks","tag-c","tag-modern-c","tag-productivity","tag-visual-studio"],"jetpack_publicize_connections":[],"aioseo_notices":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.wholetomato.com\/blog\/wp-content\/uploads\/2022\/05\/visualstudioproductivity.jpg?fit=1920%2C1279&ssl=1","jetpack_likes_enabled":true,"jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/pfpLS4-Cv","aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.5.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"In this article, we will learn 12 helpful tips for increasing Visual Studio productivity that you may not have known about.\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"Nataliia Fedchenko\"\/>\n\t<meta name=\"google-site-verification\" content=\"DtHrwoEjg0KG_fbuPSp5j_wNIf-g5hSh4EH6tZBoCIw\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.5.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Tomato Soup - Visual Assist Team Blog\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"12 Helpful Tips For Visual Studio Productivity - Tomato Soup\" \/>\n\t\t<meta property=\"og:description\" content=\"In this article, we will learn 12 helpful tips for increasing Visual Studio productivity that you may not have known about.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-05-17T17:54:43+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-11-21T08:57:58+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"12 Helpful Tips For Visual Studio Productivity - Tomato Soup\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In this article, we will learn 12 helpful tips for increasing Visual Studio productivity that you may not have known about.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/12-helpful-tips-for-doing-visual-studio-productivity\\\/#aioseo-article-64c3bf1cec421\",\"name\":\"12 Helpful Tips For Visual Studio Productivity\",\"headline\":\"12 Helpful Tips For Visual Studio Productivity\",\"description\":\"Visual Studio provides a lot of useful tools to help programmers greatly simplify the software development process. In this article, we will learn 12 helpful tips for increasing Visual Studio productivity that you may not know about, but that will be very useful for you. #1 Navigation through the elements of the project In a\",\"author\":{\"@type\":\"Person\",\"name\":\"Nataliia Fedchenko\",\"url\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/author\\\/nataliiafedchenko\\\/\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.wholetomato.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/visualstudioproductivity.jpg?fit=1920%2C1279&ssl=1\",\"width\":1920,\"height\":1279,\"caption\":\"a developer learns about visual assist-tfs tool-testrail integration on her laptop\"},\"datePublished\":\"2022-05-17T13:54:43-04:00\",\"dateModified\":\"2023-11-21T04:57:58-04:00\",\"inLanguage\":\"en-US\",\"articleSection\":\"Tips and Tricks, c++, modern c++, productivity, Visual Studio, English\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/12-helpful-tips-for-doing-visual-studio-productivity\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/category\\\/tips-and-tricks\\\/#listItem\",\"name\":\"Tips and Tricks\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/category\\\/tips-and-tricks\\\/#listItem\",\"position\":2,\"name\":\"Tips and Tricks\",\"item\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/category\\\/tips-and-tricks\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/12-helpful-tips-for-doing-visual-studio-productivity\\\/#listItem\",\"name\":\"12 Helpful Tips For Visual Studio Productivity\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/12-helpful-tips-for-doing-visual-studio-productivity\\\/#listItem\",\"position\":3,\"name\":\"12 Helpful Tips For Visual Studio Productivity\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/category\\\/tips-and-tricks\\\/#listItem\",\"name\":\"Tips and Tricks\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/#organization\",\"name\":\"Tomato Soup\",\"description\":\"Visual Assist Team Blog\",\"url\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/author\\\/nataliiafedchenko\\\/#author\",\"url\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/author\\\/nataliiafedchenko\\\/\",\"name\":\"Nataliia Fedchenko\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/12-helpful-tips-for-doing-visual-studio-productivity\\\/#webpage\",\"url\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/12-helpful-tips-for-doing-visual-studio-productivity\\\/\",\"name\":\"12 Helpful Tips For Visual Studio Productivity - Tomato Soup\",\"description\":\"In this article, we will learn 12 helpful tips for increasing Visual Studio productivity that you may not have known about.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/12-helpful-tips-for-doing-visual-studio-productivity\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/author\\\/nataliiafedchenko\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/author\\\/nataliiafedchenko\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.wholetomato.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/visualstudioproductivity.jpg?fit=1920%2C1279&ssl=1\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/12-helpful-tips-for-doing-visual-studio-productivity\\\/#mainImage\",\"width\":1920,\"height\":1279,\"caption\":\"a developer learns about visual assist-tfs tool-testrail integration on her laptop\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/12-helpful-tips-for-doing-visual-studio-productivity\\\/#mainImage\"},\"datePublished\":\"2022-05-17T13:54:43-04:00\",\"dateModified\":\"2023-11-21T04:57:58-04:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/\",\"name\":\"Tomato Soup\",\"description\":\"Visual Assist Team Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.wholetomato.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>12 Helpful Tips For Visual Studio Productivity - Tomato Soup<\/title>\n\n","aioseo_head_json":{"title":"12 Helpful Tips For Visual Studio Productivity - Tomato Soup","description":"In this article, we will learn 12 helpful tips for increasing Visual Studio productivity that you may not have known about.","canonical_url":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"google-site-verification":"DtHrwoEjg0KG_fbuPSp5j_wNIf-g5hSh4EH6tZBoCIw","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/#aioseo-article-64c3bf1cec421","name":"12 Helpful Tips For Visual Studio Productivity","headline":"12 Helpful Tips For Visual Studio Productivity","description":"Visual Studio provides a lot of useful tools to help programmers greatly simplify the software development process. In this article, we will learn 12 helpful tips for increasing Visual Studio productivity that you may not know about, but that will be very useful for you. #1 Navigation through the elements of the project In a","author":{"@type":"Person","name":"Nataliia Fedchenko","url":"https:\/\/www.wholetomato.com\/blog\/author\/nataliiafedchenko\/"},"publisher":{"@id":"https:\/\/www.wholetomato.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/i0.wp.com\/www.wholetomato.com\/blog\/wp-content\/uploads\/2022\/05\/visualstudioproductivity.jpg?fit=1920%2C1279&ssl=1","width":1920,"height":1279,"caption":"a developer learns about visual assist-tfs tool-testrail integration on her laptop"},"datePublished":"2022-05-17T13:54:43-04:00","dateModified":"2023-11-21T04:57:58-04:00","inLanguage":"en-US","articleSection":"Tips and Tricks, c++, modern c++, productivity, Visual Studio, English"},{"@type":"BreadcrumbList","@id":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.wholetomato.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.wholetomato.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.wholetomato.com\/blog\/category\/tips-and-tricks\/#listItem","name":"Tips and Tricks"}},{"@type":"ListItem","@id":"https:\/\/www.wholetomato.com\/blog\/category\/tips-and-tricks\/#listItem","position":2,"name":"Tips and Tricks","item":"https:\/\/www.wholetomato.com\/blog\/category\/tips-and-tricks\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/#listItem","name":"12 Helpful Tips For Visual Studio Productivity"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.wholetomato.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/#listItem","position":3,"name":"12 Helpful Tips For Visual Studio Productivity","previousItem":{"@type":"ListItem","@id":"https:\/\/www.wholetomato.com\/blog\/category\/tips-and-tricks\/#listItem","name":"Tips and Tricks"}}]},{"@type":"Organization","@id":"https:\/\/www.wholetomato.com\/blog\/#organization","name":"Tomato Soup","description":"Visual Assist Team Blog","url":"https:\/\/www.wholetomato.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.wholetomato.com\/blog\/author\/nataliiafedchenko\/#author","url":"https:\/\/www.wholetomato.com\/blog\/author\/nataliiafedchenko\/","name":"Nataliia Fedchenko"},{"@type":"WebPage","@id":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/#webpage","url":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/","name":"12 Helpful Tips For Visual Studio Productivity - Tomato Soup","description":"In this article, we will learn 12 helpful tips for increasing Visual Studio productivity that you may not have known about.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.wholetomato.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/#breadcrumblist"},"author":{"@id":"https:\/\/www.wholetomato.com\/blog\/author\/nataliiafedchenko\/#author"},"creator":{"@id":"https:\/\/www.wholetomato.com\/blog\/author\/nataliiafedchenko\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/i0.wp.com\/www.wholetomato.com\/blog\/wp-content\/uploads\/2022\/05\/visualstudioproductivity.jpg?fit=1920%2C1279&ssl=1","@id":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/#mainImage","width":1920,"height":1279,"caption":"a developer learns about visual assist-tfs tool-testrail integration on her laptop"},"primaryImageOfPage":{"@id":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/#mainImage"},"datePublished":"2022-05-17T13:54:43-04:00","dateModified":"2023-11-21T04:57:58-04:00"},{"@type":"WebSite","@id":"https:\/\/www.wholetomato.com\/blog\/#website","url":"https:\/\/www.wholetomato.com\/blog\/","name":"Tomato Soup","description":"Visual Assist Team Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.wholetomato.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Tomato Soup - Visual Assist Team Blog","og:type":"article","og:title":"12 Helpful Tips For Visual Studio Productivity - Tomato Soup","og:description":"In this article, we will learn 12 helpful tips for increasing Visual Studio productivity that you may not have known about.","og:url":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/","article:published_time":"2022-05-17T17:54:43+00:00","article:modified_time":"2023-11-21T08:57:58+00:00","twitter:card":"summary_large_image","twitter:title":"12 Helpful Tips For Visual Studio Productivity - Tomato Soup","twitter:description":"In this article, we will learn 12 helpful tips for increasing Visual Studio productivity that you may not have known about."},"aioseo_meta_data":{"post_id":"2387","title":null,"description":"In this article, we will learn 12 helpful tips for increasing Visual Studio productivity that you may not have known about.","keywords":[],"keyphrases":{"focus":{"keyphrase":"visual studio productivity","score":90,"analysis":{"keyphraseInTitle":{"score":9,"maxScore":9,"error":0},"keyphraseInDescription":{"score":9,"maxScore":9,"error":0},"keyphraseLength":{"score":9,"maxScore":9,"error":0,"length":3},"keyphraseInURL":{"score":5,"maxScore":5,"error":0},"keyphraseInIntroduction":{"score":9,"maxScore":9,"error":0},"keyphraseInSubHeadings":{"score":3,"maxScore":9,"error":1},"keyphraseInImageAlt":[],"keywordDensity":{"type":"best","score":9,"maxScore":9,"error":0}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"#aioseo-article-64c3bf1cec421","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"seo_analyzer_scan_date":null,"breadcrumb_settings":null,"limit_modified_date":false,"open_ai":"{\"title\":{\"suggestions\":[],\"usage\":0},\"description\":{\"suggestions\":[],\"usage\":0}}","ai":null,"created":"2022-05-17 17:44:39","updated":"2025-05-29 19:54:54"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.wholetomato.com\/blog\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.wholetomato.com\/blog\/category\/tips-and-tricks\/\" title=\"Tips and Tricks\">Tips and Tricks<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t12 Helpful Tips For Visual Studio Productivity\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.wholetomato.com\/blog"},{"label":"Tips and Tricks","link":"https:\/\/www.wholetomato.com\/blog\/category\/tips-and-tricks\/"},{"label":"12 Helpful Tips For Visual Studio Productivity","link":"https:\/\/www.wholetomato.com\/blog\/12-helpful-tips-for-doing-visual-studio-productivity\/"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.wholetomato.com\/blog\/wp-json\/wp\/v2\/posts\/2387","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wholetomato.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wholetomato.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wholetomato.com\/blog\/wp-json\/wp\/v2\/users\/213500342"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wholetomato.com\/blog\/wp-json\/wp\/v2\/comments?post=2387"}],"version-history":[{"count":11,"href":"https:\/\/www.wholetomato.com\/blog\/wp-json\/wp\/v2\/posts\/2387\/revisions"}],"predecessor-version":[{"id":3558,"href":"https:\/\/www.wholetomato.com\/blog\/wp-json\/wp\/v2\/posts\/2387\/revisions\/3558"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.wholetomato.com\/blog\/wp-json\/wp\/v2\/media\/2389"}],"wp:attachment":[{"href":"https:\/\/www.wholetomato.com\/blog\/wp-json\/wp\/v2\/media?parent=2387"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wholetomato.com\/blog\/wp-json\/wp\/v2\/categories?post=2387"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wholetomato.com\/blog\/wp-json\/wp\/v2\/tags?post=2387"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}