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

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