Skip to content

Instantly share code, notes, and snippets.

@NicoVermeir
Created November 10, 2016 22:09
Show Gist options
  • Save NicoVermeir/fa5ff8ba6e8fbecec15e48c9ca36a65a to your computer and use it in GitHub Desktop.
Save NicoVermeir/fa5ff8ba6e8fbecec15e48c9ca36a65a to your computer and use it in GitHub Desktop.
protected override void Initialize()
{
base.Initialize();
_dte = GetService(typeof(DTE)) as DTE;
if (_dte == null)
{
throw new NullReferenceException("DTE is null");
}
CreateController();
CreateMenuItem();
HookUpEvents();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment