Skip to main content

Visual Studio 2017, best extensions on launch

When Visual studio 2015 launched, I wrote a blog post titled Resharper without Resharper. This was clearly aimed at giving people the ability in 2015 to divorce themselves from the very expensive product. In writing the post however, I didn't realize people would just want a low down on cool vs2015 extensions.

Since the launch of 2017, I decided to put together my favorite extensions again.

Recap

Here were my mentioned plugins of 2015:

  • Refactoring Essentials - Still valid in 2017, great set of refactors
  • Code Cracker - Another one still valid in 2017, great package to do code analysis, and improvements
  • Code Maid - Great for cleaning up source code, I'd use this still
  • Continuous Formatting - I wouldn't use this as much, stick with code maid. This is a paid product, and code maid is free.
  • Web Essentials - Still a top tool for any webdev's

Razor tooling extension

Ok so, incase you didn't hear. The AspNet team was unable to get all the razor tooling done in time to ship with VS 2017! Don't fret though, they have published an extension called the Razor tooling extension. This provides a very rich experience with razor, and will ultimately let you refactor multiple razor files with ease! The biggest feature of this, is the TagHelper tools. This extension understands what TagHelpers you have in scope, and appropriately highlights, them and auto-completes the properties.

Project file tools

Ok so this ones name is a little ambiguous. The project file tools extension allows your nuget packages to auto complete when editing the new csproj files, akin to what we had with project.json. In the new world, your nuget packages are declared inside the csproj, and this just provides intellisense on what packages, and version are available. This is an awesome experience, to keep me inside VS, and not in nuget.org

Roslynator

Ok, here is a cool one, both in name, and functionality. Roslynator is another refactoring/code analysis plugin that uses roslyn under the hood. This provides over 170 different analyzers, and over 180 refactorings, all for c#. I've been using this extension for a little while, and I've been blown away! Both by refactoring features, and the overall performance. Extensions such as this one, usually are less performant. I never noticed any slowdowns, or had this plugin ever crash. You can turn on and off features, through an options dialog. Great documentation on github, lots of options, and a cool name all add up to a sweat experience.

Productivity Power Tools!

Ok so I know I'm late to the game on this one. I'll be honest, I used this before, but didn't blog about it. Productivity Power Tools is a cool extension and in this release, it just installs a bunch of separate extensions. They broke apart the 1 extension, and made this extension a meta extension. This is so the team could rev each individual component.

Some of my favorites are the match margin which when text is highlighted, shows all lines in the margin where the same text occurs. Copy as HTML is a pretty cool extension that lets you copy in html, with proper formatting. Finally Align Assignments is my all time favorite in this bundle. This aligns multiple declarations so they are all formatted the same.

Roaming extensions!

The biggest new feature in vs 2017 is that your extensions can now "sync" between instances of VS. Under tools -> Extensions and updates -> Roaming Extensions Manager you can now pick extensions to "roam". This is an awesome tool, because you can now have the same development experience even under a brand new install! Your extensions finally go with you.

roaming extension manager

Summary

There are a ton of new extensions, go use them. Let me know in the comments below what your favorite extension is!!!!

Tagged In:
dotnet csharp visual studio