Ejemplo n.º 1
0
 public ProjectNodeExtender(
     JoinableTaskContext taskContext,
     [Import(typeof(SVsServiceProvider))] IServiceProvider serviceProvider)
 {
     _commandHandler = new ProjectNodeCommandHandler(taskContext, serviceProvider);
 }
Ejemplo n.º 2
0
 public ContextMenuProvider(OutputPaneWrapper outputPane)
 {
     this.outputPane = outputPane;
     this.npmHandler = new NpmCommandHandler(this.outputPane);
 }
Ejemplo n.º 3
0
 public NuGetNodeExtender(
     JoinableTaskContext taskContext,
     IAsyncServiceProvider asyncServiceProvider)
 {
     _commandHandler = new NuGetWorkspaceCommandHandler(taskContext, asyncServiceProvider);
 }