-
RSS
Tag Cloud
Archives
- November 2021 (2)
- October 2021 (1)
- September 2021 (2)
- August 2021 (5)
- July 2021 (5)
- June 2021 (1)
- September 2020 (1)
- December 2019 (2)
- November 2019 (2)
- October 2019 (2)
- September 2019 (2)
- July 2019 (1)
- May 2019 (5)
- April 2019 (9)
- March 2019 (6)
- February 2019 (1)
- January 2019 (6)
- December 2018 (4)
- November 2018 (3)
- October 2018 (1)
- August 2018 (1)
- July 2018 (1)
- January 2018 (1)
- September 2017 (3)
- August 2017 (1)
- July 2017 (1)
- June 2017 (3)
- May 2017 (3)
- April 2017 (2)
- March 2017 (1)
- February 2017 (1)
- January 2017 (10)
- November 2016 (1)
- September 2016 (1)
- August 2016 (5)
- July 2016 (1)
- June 2016 (2)
- May 2016 (4)
- April 2016 (2)
- March 2016 (2)
- December 2015 (4)
- November 2015 (3)
- October 2015 (2)
- September 2015 (1)
- August 2015 (2)
- July 2015 (2)
- June 2015 (5)
- May 2015 (4)
- March 2015 (1)
- February 2015 (1)
- December 2014 (1)
- November 2014 (2)
- October 2014 (2)
- August 2014 (1)
- June 2014 (1)
- May 2014 (1)
- March 2014 (1)
- February 2014 (1)
- January 2014 (2)
- December 2013 (7)
- November 2013 (7)
- October 2013 (12)
- September 2013 (2)
- August 2013 (1)
- July 2013 (1)
- June 2013 (1)
- December 2012 (1)
- November 2012 (2)
- September 2012 (3)
- June 2012 (1)
- May 2012 (1)
- April 2012 (2)
- March 2012 (4)
- February 2012 (5)
- January 2012 (5)
- December 2011 (8)
- November 2011 (2)
- October 2011 (2)
Links
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
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 Visual Studio 2019, Visual Studio extensions
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
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
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
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