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

            var commandService = (IMenuCommandService)await package.GetServiceAsync((typeof(IMenuCommandService)));

            var dte = (DTE)await package.GetServiceAsync((typeof(DTE)));

            Instance = new NewTempProjectCommand(commandService, dte);
        }
 protected override async Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
 {
     await NewTempProjectCommand.InitializeAsync(this);
 }