Initialize() public static method

public static Initialize ( Microsoft.VisualStudio.Shell.Package package, Microsoft.VisualStudio.Shell.OleMenuCommandService commandService ) : void
package Microsoft.VisualStudio.Shell.Package
commandService Microsoft.VisualStudio.Shell.OleMenuCommandService
return void
        protected override async Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
        {
            await JoinableTaskFactory.SwitchToMainThreadAsync();

            var commandService = await GetServiceAsync(typeof(IMenuCommandService)) as OleMenuCommandService;

            Options = (Options)GetDialogPage(typeof(Options));
            EnableReloadCommand.Initialize(this, commandService);
        }
Example #2
0
        protected override async Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
        {
            Options = (Options)GetDialogPage(typeof(Options));
            var commandService = await GetServiceAsync(typeof(IMenuCommandService)) as OleMenuCommandService;

            if (commandService != null)
            {
                EnableReloadCommand.Initialize(this, commandService);
            }
        }
        protected override void Initialize()
        {
            Options = (Options)GetDialogPage(typeof(Options));

            Logger.Initialize(this, Vsix.Name);
            Telemetry.Initialize(this, Vsix.Version, "a97d5a5b-1ce8-4a18-8ee6-1755367949cb");

            EnableReloadCommand.Initialize(this);

            base.Initialize();
        }