Exemplo n.º 1
0
 private void CustomVerify(object sender, EventArgs e)
 {
     if (OptionPage != null)
     {
         if (!VSIntegration.DocumentsSavedCheck(OptionPage))
         {
             return;
         }
         VCCLauncher.CustomVerify(VSIntegration.StartFileName, OptionPage);
     }
 }
Exemplo n.º 2
0
 private void VerifyThis(object sender, EventArgs e)
 {
     if (OptionPage != null)
     {
         if (!VSIntegration.DocumentsSavedCheck(OptionPage))
         {
             return;
         }
         VCCLauncher.VerifyThis(VSIntegration.StartFileName, VSIntegration.ActiveFileFullName, VSIntegration.CurrentLine, OptionPage);
     }
 }
Exemplo n.º 3
0
 private void ReVerify(object sender, EventArgs e)
 {
     if (OptionPage != null)
     {
         if (!VSIntegration.DocumentsSavedCheck(OptionPage))
         {
             return;
         }
         VCCLauncher.LaunchVCC(LastAction);
     }
 }