예제 #1
0
 public static void DeleteTestDirectory(string repoPath)
 {
     if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
     {
         // Use cmd.exe to delete the enlistment as it properly handles tombstones and reparse points
         CmdRunner.DeleteDirectoryWithLimitedRetries(repoPath);
     }
     else
     {
         BashRunner.DeleteDirectoryWithLimitedRetries(repoPath);
     }
 }