Visual Studio Toolbox

16 New Tools and Extensions for Visual Studio

The tools and extensions keep on coming, so here's another round-up of new releases. You keep building extensions, we'll keep sharing them with the Visual Studio community.

The summer may be coming to an unwelcome end -- except to those of us looking forward to fall colors and skiing -- but there's been no let up in the release of new tools and extensions for Visual Studio. That includes the first trickle of extensions specifically for the upcoming Visual Studio 15. I've pulled together a round-up of 16 new contributions to the Visual Studio Gallery that range from project templates to security toolsets to simple utilities that make you more productive. Bonus: They're all free.

Project Templates
Last year in 15 Visual Studio Project Templates To Jump Start Your Code I introduced you to the Windows IoT Core Project Templates, which provides the scaffolding for building cross-platform "Internet of Things" applications in Visual Studio for Windows 10 IoT Core devices. These include Arduino, Arrow DragonBoard, MinnowBoard MAX, Raspberry Pi, along with recently announced support four Intel Joule. For more background information, see Tyler Whitney's Guide to Universal Windows Platform (UWP) apps on MSDN.

While the Windows IoT Core Project Templates aren't technically new, they have been updated recently to support additional platforms. Plus, Microsoft has released a new Windows IoT Core Project Templates for VS 15 package specifically for Visual Studio 15.

Updated Windows IoT Templates Now Available for Visual Studio 15
[Click on image for larger view.] Figure 1: Updated Windows IoT Templates Now Available for Visual Studio 15

Another great new addition is Alexander Krylkov's Simplify.Web.Templates, a collection of project templates for building web applications with Krylkov's Simplify.Web. This is a fast, lightweight .NET Framework-based web framework based on MVC and OWIN, that includes its own dependency injection (Simplify.DI) and templating engine (Simplify.Templates). Simplify.Web also includes great documentation in the Simplify.Web Wiki, a feature that always gets my attention.

The Latest from Mads Kristensen
Visual Studio extension projects from Mads Kristensen are no strangers to this column, and Kristensen has been busy this summer with new and updated tools. Here are just the ones I stumbled upon recently ... there may be more!

Grunt Snippet Pack and HTML Snippet Pack are Visual Studio code snippet expansions for the Grunt JavaScript task runner and HTML, respectively. Kristensen also has released snippet packs for JavasScript (which I covered last year) and the Jasmine unit test library, but it hasn't been updated quite as recently. There may be more that I've overlooked.

Want to make your own snippet packs for languages that Kristensen has somehow missed? The Snippet Pack Project Template provides a basic project template for building snippet pack extensions for any languages supported by Visual Studio including C#, VB, JavaScript, and HTML, and your snippet packs will work in Visual Studio 2012, 2013, and 2015.

Speaking of packs, Syntax Highlighting Pack is a collection of code syntax highlighting schemes that covers 30 languages out of the box, from batch files to YAML. This extension takes advantage of a feature I did not know about: Visual Studio can load TextMate Bundles for language services.

TextMate, by the way, is a popular Mac OS code editor, and the cross-platform Sublime Text editor also uses TextMate bundles. Makes me wonder what other syntax highlighting features from my August 2014 article Semantic Code Highlighting might be possible... .

Also take a look at Kristensen's File Icons pack, which provides new or improved descriptive file icons for hundreds of file types not recognized by default in Solution Explorer. There's even a feature that lets you report file types that don't yet have icons by creating an issue in the project GitHub repo.

File Icons Provides Better Solution Explorer Icons for Hundreds of File Types
[Click on image for larger view.] Figure 2: File Icons Provides Better Solution Explorer Icons for Hundreds of File Types

Tools for Better Coding
Let's take a look at some more new tools and extensions that help you while you're coding. A good place to start is AttackFlow Community Edition extension, a free version of AttackFlow, an interactive static security analyzer. AttackFlow reviews your code as you work against security best practices and known vulnerabilities and provides real-time notifications so you can fix your code before shipping. The free community edition provides notifications for 6 vulnerabilities, while the paid version includes over 40.

DependencyInjectionToolset, by Akos Nagy, is a simple Visual Studio 2015 extension that helps automatically create constructor injection code parameters to take the grueling work out of creating well written, self-documenting dependency injection code.

A new Unit Test Boilerplate Generator extension by Microsoft's David Rickard lets you create a unit test for a given class on the fly from within Solution Explorer. The extension supports the Moq mocking framework for the .NET Framework and Unity for dependency injection.

If you're coding in C++ close to the metal, check out Henk-Jan Lebbink's Intrinsics Dude extension, which provides statement completion, tooltips, and signature help for compiler intrinsic functions, including the ability to enable or disable support for specific processor architectures. Want to code even closer to the metal? Lebbink's AsmDude extension provides assembly language syntax highlighting, code completion, label analysis, and documentation for i386, x64, MMX, SSE, AVX, AVX2 and Xeon Phi architectures. See the intrinsics-dude and asm-dude projects on GitHub for details, documentation, and issues.

Intrinsics Dude Provides Coding Assistance for Compiler Intrinsics
[Click on image for larger view.] Figure 3: Intrinsics Dude Provides Coding Assistance for Compiler Intrinsics

Visual Studio Utilities
Here are a few extensions that add convenience functions to Visual Studio. For example, Respacer, by Drew Keller, helps normalize indentation within a code file, folder, or an entire project between tabs or spaces. Simple as that! I'm not even going to judge if you're using tabs instead of spaces... .

Visual Studio Bitbucket Extension, of course, adds built-in support for Bitbucket-based git repositories. (Two of Bitbucket's interesting features versus GitHub are free private repositories and a free tier for small teams.) The Bitbucket extension lets you handle all the usual tasks from within Visual Studio including setting up remote repos, cloning, pushing, pulling, handling pull requests and so on. A nice alternative DCVS solution to GitHub should you need it.

On the topic of source control, the Git Submodules extension, by Tobias Sekan, is a graphical git client for Visual Studio that provides more granular control over git submodules than many other clients. Submodules are simply git projects that are dependencies within other git projects, so source control has to be handled separately for the submodules. The Git Submodules extension lets you initialize and de-initialize submodules, check submodule status, pull or fetch individually or all submodules, and more.

Manage Submodules in a Project with the GIT Submodule Extension
[Click on image for larger view.] Figure 4: Manage Submodules in a Project with the GIT Submodule Extension
AnyStatus, by Alon Amsalem, is a handy extension for monitoring processes and services on the back end of your development workflow. It lets you monitor build and integration services like AppVeyor, Jenkins, TeamCity, or TFS, local Windows services, HTTP status, TCP ports, and more. Colored service health indicators are displayed in a tab within Visual Studio. Don't see a service that you need to monitor? File an issue with the project or make your own contribution to the codebase.

HJSON for Configuration
Here's a very interesting project that caught my eye this month: the Hjson extension provides HJSON syntax support within Visual Studio 2015 and 15. What's that? Well, Hjson, the Human JSON is a project to allow writing YAML-style configuration in a JSON-like format that is less punctuation sensitive, doesn't require quoted key names or strings, and allows for commented metadata. HJSON is easier to read and write, but can be quickly transformed to compliant JSON.

In addition, the Hjson project on GitHub provides language-specific HJSON parsing libraries for C#, Go, Grunt, Gulp, Java, JavaScript, PHP, Python, Ruby, and Rust, so you can read HJSON configuration directly. Who knows where this will go, but having recently tried teaching some non-technical folks how to edit YAML (badly I might add), it's a very intriguing idea.

Open Source Extension Projects
In closing, I thought it worth pointing out that a solid majority the projects highlighted here today are open-source projects with public GitHub repos. That includes AnyStatus, Git Submodules, HJSON, Intrinsics Dude and ASM Dude, Respacer, Simplify.Web, Snippet Pack Project Template, Syntax Highlighting Pack -- actually, all of Mads Kristensen's projects -- and the Windows IoT Core resources.

It's great that Visual Studio Gallery gives contributors the ability to link directly to their repos, where you can review the code, read wiki documentation, post issues, grab the code, and even make your own contribution and pull requests. You can also see the number of issues and pull requests right in the gallery listing. I noticed that File Icons even enables you to create project issues directly from the extension.

I love this level of community transparency and collaboration. Keep it up folks. And don't forget to write documentation for your projects. I can't in good conscience highlight tools and extensions, no matter how great they may be, if I can't tell what they do. Cheers!

About the Author

Terrence Dorsey is a technical writer, editor and content strategist specializing in technology and software development. Over the last 25-plus years he has worked on developer-focused projects at ESPN, The Code Project, and Microsoft. Read his blog at http://terrencedorsey.com or follow @tpdorsey on Twitter.

comments powered by Disqus

Featured

  • AI for GitHub Collaboration? Maybe Not So Much

    No doubt GitHub Copilot has been a boon for developers, but AI might not be the best tool for collaboration, according to developers weighing in on a recent social media post from the GitHub team.

  • Visual Studio 2022 Getting VS Code 'Command Palette' Equivalent

    As any Visual Studio Code user knows, the editor's command palette is a powerful tool for getting things done quickly, without having to navigate through menus and dialogs. Now, we learn how an equivalent is coming for Microsoft's flagship Visual Studio IDE, invoked by the same familiar Ctrl+Shift+P keyboard shortcut.

  • .NET 9 Preview 3: 'I've Been Waiting 9 Years for This API!'

    Microsoft's third preview of .NET 9 sees a lot of minor tweaks and fixes with no earth-shaking new functionality, but little things can be important to individual developers.

  • Data Anomaly Detection Using a Neural Autoencoder with C#

    Dr. James McCaffrey of Microsoft Research tackles the process of examining a set of source data to find data items that are different in some way from the majority of the source items.

  • What's New for Python, Java in Visual Studio Code

    Microsoft announced March 2024 updates to its Python and Java extensions for Visual Studio Code, the open source-based, cross-platform code editor that has repeatedly been named the No. 1 tool in major development surveys.

Subscribe on YouTube