예제 #1
0
 internal CopyWithContextCommand(VSHelpersPackage package)
     : base(package, new CommandID(GuidList.guidVSHelpersCmdSet, (int)PkgCmdIDList.cmdidCopyWithContext))
 {
 }
예제 #2
0
 internal RunWithoutDebugCommand(VSHelpersPackage package)
     : base(package, new CommandID(GuidList.guidVSHelpersCmdSet, (int)PkgCmdIDList.cmdidStartWithoutDebug))
 {
 }
예제 #3
0
 /// <summary>
 /// Base implementation of a command
 /// </summary>
 /// <param name="package">the package</param>
 /// <param name="id">command id</param>
 protected BaseCommand(VSHelpersPackage package, CommandID id)
     : base(BaseCommand_Execute, id)
 {
     Package = package;
     this.BeforeQueryStatus += BaseCommand_BeforeQueryStatus;
 }