public void HistoryRight()
 {
     try
     {
         string appPath  = _tfsPath_;
         string filePath = getRightPath();
         string target   = "history \"" + filePath + "\" /recursive" + QuickScanVM.GetFilters();
         System.Diagnostics.Process.Start(appPath, target);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "Sorry, TFS History failed.");
     }
 }
Exemple #2
0
 internal void FolderHistoryRight()
 {
     try
     {
         string appPath = FileComparison._tfsPath_;
         string target  = "history \"" + CurrentPaths.Right + "\" /recursive" + QuickScanVM.GetFilters();
         System.Diagnostics.Process.Start(appPath, target);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "Sorry, TFS History failed.");
     }
 }