/// <summary> /// Initializes the singleton instance of the command. /// </summary> /// <param name="package">Owner package, not null.</param> public static void Initialize(Package package) { Instance = new TaskExplorerWindowCommand(package); }
protected override Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress) { TaskExplorerWindowCommand.Initialize(this); return(base.InitializeAsync(cancellationToken, progress)); }