Пример #1
0
 /// <summary>
 /// Implements the OnBeginShutdown method of the IDTExtensibility2 interface. Receives notification that the host application is being unloaded.
 /// </summary>
 /// <param name="custom">Array of parameters that are host application specific.</param>
 /// <seealso class="IDTExtensibility2"/>
 public void OnBeginShutdown(ref Array custom)
 {
     this.intuitAnywhereMenuUtil = null;
 }
Пример #2
0
 /// <summary>
 /// Implements the OnStartupComplete method of the IDTExtensibility2 interface. Receives notification that the host application has completed loading.
 /// </summary>
 /// <param name="custom">Array of parameters that are host application specific.</param>
 /// <seealso class="IDTExtensibility2"/>
 public void OnStartupComplete(ref Array custom)
 {
     this.intuitAnywhereMenuUtil = new MenuUtil(this.visualStudio);
     this.intuitAnywhereMenuUtil.ConstructIntuitAnywhereMenus();
 }