/// <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);
 }
Exemplo n.º 2
0
 protected override Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
 {
     TaskExplorerWindowCommand.Initialize(this);
     return(base.InitializeAsync(cancellationToken, progress));
 }