Ejemplo n.º 1
0
 private void InvokePostEvent(IWin32Window ownerForm, bool actionDone, GitUIPostActionEventHandler gitUIEventHandler)
 {
     if (gitUIEventHandler != null)
     {
         var e = new GitUIPostActionEventArgs(ownerForm, this, actionDone);
         gitUIEventHandler(this, e);
     }
 }
 private void GitUICommands_PostCheckout(object sender, GitUIPostActionEventArgs e)
 {
     CurrentStatus = WorkingStatus.Started;
 }
 /// <summary>
 ///   Automaticly compile all solution files found in any submodule
 /// </summary>
 private void GitUiCommandsPostUpdateSubmodules(object sender, GitUIPostActionEventArgs e)
 {
     if (e.ActionDone && MsBuildEnabled[Settings].Value)
         Execute(e);
 }
Ejemplo n.º 4
0
 /// <summary>
 ///   Automaticly compile all solution files found in any submodule
 /// </summary>
 private void GitUiCommandsPostUpdateSubmodules(object sender, GitUIPostActionEventArgs e)
 {
     if (e.ActionDone && Settings.GetSetting("Enabled (true / false)")
         .Equals("true", StringComparison.InvariantCultureIgnoreCase))
         Execute(e);
 }
 private void OnPostSettings(object sender, GitUIPostActionEventArgs e)
 {
     RecreateObservable();
 }