public static async Task InitializeAsync(AsyncPackage package)
        {
            await ThreadHelper.JoinableTaskFactory.SwitchToMainThreadAsync(package.DisposalToken);

            OleMenuCommandService commandService = await package.GetServiceAsync(typeof(IMenuCommandService)) as OleMenuCommandService;

            Instance = new FlamingoPropertiesCommand(package, commandService);
        }
Example #2
0
        protected override async Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
        {
            await this.JoinableTaskFactory.SwitchToMainThreadAsync(cancellationToken);

            await XSLTRunCommand.InitializeAsync(this);

            await XSLTDebugCommand.InitializeAsync(this);

            await FlamingoPropertiesCommand.InitializeAsync(this);
        }