Category Archives: Visual Studio tips

Installing a Visual Studio extension for a RootSuffix

Each Visual Studio instance started with the RootSuffix parameter keeps its own set of extensions. If a Visual Studio extension is available from the Visual Studio Marketplace, you can just install it from the standard Manage Extensions dialog. But if … Continue reading

Posted in Visual Studio tips | Leave a comment

HTML preview in Visual Studio 2019

Default HTML editor in Visual Studio 2019 doesn’t include preview. You can select the Web Forms editor with a Design view, but it requires updates as you change code and doesn’t support full modern HTML capabilities. The new HTML 11 … Continue reading

Posted in Visual Studio tips, Vlasov Studio tools | Tagged , , | Leave a comment

Linking Files in Visual Studio

Jeremy Clark provides great explanation on how to share a file between different projects.

Posted in Visual Studio tips | Leave a comment

Hutch tips

Jeremy Hutchinson runs a series of Visual Studio tips covering debugging and IDE productivity. Check it out!

Posted in Visual Studio tips | Leave a comment

Freeing screen space in Visual Studio 2019

In Visual Studio 2019, even if you hide all toolbars, Live Share and Feedback buttons while rarely used take up valuable screen space: You can hide this area with Visual Commander and Hide Live Share and Feedback in VS 2019 … Continue reading

Posted in Visual Studio tips, Vlasov Studio tools | Tagged , | 7 Comments

Changing Visual Studio 2017 private registry settings

Visual Studio traditionally includes several settings that can be set only in registry (HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\[version] key). For example, Find result format, UseSolutionNavigatorGraphProvider or EnableVSIPLogging. Visual Studio 2017 continues to support these settings, but now uses the RegLoadAppKey function to store registry … Continue reading

Posted in Visual Studio tips | Tagged | 1 Comment

New code navigation shortcuts in Visual Studio 2017

The new Go to All window in Visual Studio 2017 lets you navigate directly to any file or symbol by typing a search query: You can open this window using keyboard shortcuts Ctrl+, or Ctrl+T assigned by default to the … Continue reading

Posted in Visual Studio tips | Tagged | 1 Comment

Semantic C# code highlighting in Visual Studio 2017

A basic code colorizer highlights language keywords, comments and string. A semantic highlighter performs full language parsing which results in very accurate understanding of code and may, for example, give local variables a distinct color to improve the comprehensibility of … Continue reading

Posted in Visual Studio tips | Tagged , | Leave a comment

Read and understand code faster with programming ligatures in Fira Code font

A ligature occurs where two or more graphemes or letters are joined as a single glyph. For example, Fira Code font by Nikita Prokopov contains a set of ligatures for common programming multi-character combinations like ++, >= or != : … Continue reading

Posted in Visual Studio tips | 5 Comments

Hide the Publish button in the status bar of Visual Studio 2015 Update 2

Visual Studio 2015 Update 2 adds the new Publish button to the status bar to provide a quick and easy way to get solutions into source control: “[The Publish button] aims to provide a quick and easy way to get … Continue reading

Posted in Visual Studio tips | Tagged | 4 Comments