Giter Site home page Giter Site logo

jamesc-skyward / community.visualstudio.toolkit Goto Github PK

View Code? Open in Web Editor NEW

This project forked from vsixcommunity/community.visualstudio.toolkit

0.0 0.0 0.0 1.37 MB

Making it easier to write Visual Studio extensions

License: Other

C# 96.51% PowerShell 3.49%

community.visualstudio.toolkit's Introduction

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.17 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

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();
}

Dependency Injection

To incorporate a DI container into your extension, see the complimentary project: Community.VisualStudio.Toolkit.DependencyInjection

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 common services are all easy to get to from the main VS object.

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:

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.