Skip to content

StevenBonePgh/Community.VisualStudio.Toolkit

 
 

Repository files navigation

Community toolkit for Visual Studio extensions

A community driven effort for a better Visual Studio experience developing extensions.

Build status NuGet

The NuGet package Community.VisualStudio.Toolkit acts as a companion to the regular Visual Studio SDK packages with helper methods, classes and extension methods that makes writing extensions a lot easier.

Supported versions

  • Visual Studio 2015
  • Visual Studio 2017
  • Visual Studio 2019
  • Visual Studio 2022

Try the nightly builds

Create a file called nuget.config in your solution folder, and paste in the following content:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="nuget.org" value="https://www.nuget.org/api/v2/" />
    <add key="Toolkit CI" value="https://ci.appveyor.com/nuget/community-visualstudio-toolkit" />
  </packageSources>
</configuration>

Examples

Here are some examples of typical scenarios used in extensions.

Commands

You can now write commands much simpler than you're used to. Here's what a command that opens a tool window would look like:

[Command(PackageIds.RunnerWindow)]
internal sealed class RunnerWindowCommand : BaseCommand<RunnerWindowCommand>
{
    protected override async Task ExecuteAsync(OleMenuCmdEventArgs e) =>
        await RunnerWindow.ShowAsync();
}

Writing to the Status Bar

await VS.StatusBar.ShowMessageAsync("My status bar text");

Showing a message box

await VS.MessageBox.ShowAsync("Title", "Message");

Log error to output window

Synchronous version:

catch (Exception ex)
{
    ex.Log();
}

Async version:

catch (Exception ex)
{
    await ex.LogAsync();
}

Purpose

This package attempts to solve multiple issues with the current extensibility model.

Too much boilerplate is needed to do simple things

Base classes, helper methods, and extension methods encapsulate the complexity so you don't have to.

It's difficult to find what services and components to use

Now the most commmon services are all easy to get to from the main VS object. For instance, to write to the status bar, you can now write the following:

Best practices change with each version of VS. I can't keep up

The underlying implementation of the project uses the best practices for each version of VS it supports. This ensures that your extension is much more likely to handle threading correctly, and avoid hangs and crashes.

The API is dated and has lots of ugly COM legacy noise

The most common APIs of the old complex COM nature are wrapped to expose a modern async API. This makes it much easier to code against the API and you can avoid the EnvDTE object for most scenarios.

The API isn't async and getting threading right is too hard

All the base classes and helper methods are async by default. There are cases where they are not, but that is because it wouldn't be beneficial for them to be.

Only Microsoft can update the API and that doesn't scale

This is a living project where the whole community can contribute helpers on top of the official VS SDK. There is no need to wait for Microsoft to make an update, since this project gives the ability to continue the work in a separate work stream.

Breaking changes in the API between VS version are painful

This project works around those changes in the implementation of its public contracts and interfaces. This means that what was a breaking change to the VS SDK, becomes an implementation detail of this project and no user will be affected.

Templates

For both project- and item templates that utilizes this NuGet packages, download the Extensibility Template Pack.

About

Making it easier to write Visual Studio extensions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 99.1%
  • PowerShell 0.9%