Example #1
0
 private void Execute(object sender, EventArgs e)
 {
     System.Threading.Tasks.Task.Run(() =>
     {
         AddCliHostFile.CopyFile(_folder, Constants.VsHostFileName, true);
         AddCliHostFile.CopyFile(_folder, "template-icon.png", false);
     });
 }
        protected async override Tasks.Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
        {
            if (await GetServiceAsync(typeof(IMenuCommandService)) is OleMenuCommandService commandService)
            {
                await ThreadHelper.JoinableTaskFactory.SwitchToMainThreadAsync();

                AddTemplate.Initialize(this, commandService);
                AddVsHostFile.Initialize(this, commandService);
                AddCliHostFile.Initialize(this, commandService);
            }
        }
Example #3
0
 public static void Initialize(Package package, OleMenuCommandService commandService)
 {
     Instance = new AddCliHostFile(package, commandService);
 }