protected override async Tasks.Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
 {
     if (await GetServiceAsync(typeof(IMenuCommandService)) is OleMenuCommandService commandService)
     {
         AddConfigFile.Initialize(this, commandService);
     }
 }
Exemple #2
0
        protected override async Tasks.Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
        {
            await JoinableTaskFactory.SwitchToMainThreadAsync();

            if (await GetServiceAsync(typeof(IMenuCommandService)) is OleMenuCommandService commandService)
            {
                AddConfigFile.Initialize(this, commandService);
            }
        }
Exemple #3
0
 public static void Initialize(Package package, OleMenuCommandService commandService)
 {
     Instance = new AddConfigFile(package, commandService);
 }