public AttachToStartupProjectsCommand(TyeServicesProvider tyeServicesProvider, DebuggerAttacher debuggerAttacher, TyeExplorerLogger _logger) :
     base(PackageIds.TyeExplorer_AttachStartupProjects)
 {
     _tyeServicesProvider = tyeServicesProvider;
     _debuggerAttacher    = debuggerAttacher;
     this._logger         = _logger;
 }
 public OpenSelectedServiceLoggingCommand(TyeServicesProvider tyeServicesProvider, TyeServiceOutputManager tyeServiceOutputManager) :
     base(PackageIds.TyeExplorer_OpenLoggingSelected)
 {
     _tyeServicesProvider     = tyeServicesProvider;
     _tyeServiceOutputManager = tyeServiceOutputManager;
 }
Exemple #3
0
 public AttachToSelectedCommand(TyeServicesProvider tyeServicesProvider, DebuggerAttacher debuggerAttacher) :
     base(PackageIds.TyeExplorer_AttachSelected)
 {
     _tyeServicesProvider = tyeServicesProvider;
     _debuggerAttacher    = debuggerAttacher;
 }
Exemple #4
0
 public ReloadTyeExplorerCommand(TyeServicesProvider apiConnector) :
     base(PackageIds.TyeExplorer_ReloadServices)
 {
     _apiConnector = apiConnector;
 }