private void Install(object sender, RoutedEventArgs e)
 {
     Task.Factory.StartNew(() =>
     {
         project.Install();
     });
 }
        private void Install(object sender, RoutedEventArgs e)
        {
            XrayProject project = new XrayProject(
                _sshClient,
                Record.Settings,
                WriteShell);

            Task.Factory.StartNew(() =>
            {
                project.Install();
            });
        }