Ejemplo n.º 1
0
        public static async Task InitializeAsync(AsyncPackage package)
        {
            await ThreadHelper.JoinableTaskFactory.SwitchToMainThreadAsync(package.DisposalToken);

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

            Instance = new XSLTDebugCommand(package, commandService);
        }
Ejemplo n.º 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);
        }