Пример #1
0
        /// <summary>
        /// Add the plugins.
        /// </summary>
        internal void AddPlugins()
        {
            TraceService.WriteLine("Connect::AddPlugins Version=" + this.ApplicationVersion);

            PluginsController controller = new PluginsController
            {
                DTE2 = this.VSInstance.ApplicationObject
            };

            controller.Run();
        }
Пример #2
0
        /// <summary>
        /// Adds the plugins tool strip menu item click.
        /// </summary>
        /// <param name="sender">The sender.</param>
        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
        private void AddPluginsToolStripMenuItemClick(object sender, EventArgs e)
        {
            PluginsController controller = new PluginsController();

            controller.Run();
        }