private void StartInstall(object sender, DoWorkEventArgs args)
 {
     try
     {
         Installer installer = new Installer(gccPath, projectPath);
         installer.OnProgressChangeEvent += ProgressChangeSend;
         installer.StartInstall();
     }
     catch (Exception e)
     {
         ErrorShower.Show(e);
     }
 }